Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4321840
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T08:47:51+00:00 2026-05-21T08:47:51+00:00

The below is quoted from here : <?php $directory = dirname(__FILE__).’/locale’; $domain = ‘mydomain’;

  • 0

The below is quoted from here:

<?php

$directory = dirname(__FILE__).'/locale';
$domain = 'mydomain';
$locale ="pt_BR.utf8";

//putenv("LANG=".$locale); //not needed for my tests, but people say it's useful for windows

setlocale( LC_MESSAGES, $locale);
bindtextdomain($domain, $directory);
textdomain($domain);
bind_textdomain_codeset($domain, 'UTF-8');

But what’s it doing ?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-21T08:47:51+00:00Added an answer on May 21, 2026 at 8:47 am

    textdomain() specifically is about switching between multiple text sources. In web applications you typically only have one textdomain, because it’s often just one big application.

    You would use it if your application is separated into multiple modules. The advantage is that the translation texts (.mo and .po) files could be edited and updated separately for each application part.

    And when switching between modules, each can reset its domain:

    # mail.php
    textdomain("mail");
    print _("Application");     # prints "Mail app"
    

    vs

    # calendar.php
    textdomain("calendar");
    print _("Application");     # prints "Calendar app" e.g.
    

    There is also a shortcut for that purpose:

    print dgettext("main", "Application");   # "Foobar app"
    

    In the common case you use textdomain() however just with the main applicaiton name. This then became the basename for the transaltion sources myapp.mo:

    textdomain("myapp");
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Ok, here is setup. Note the code below is SIMPLIFIED version. PHP 5.2 ENGINE:
Below is part of the XML which I am processing with PHP's XSLTProcessor :
Below are lines from the c++ programming language template<class T > T sqrt(T );
How do I read the error_code from this SOAP reply Envelope? My PHP version
To illustrate, here's how to do it from the command-line: vim `grep hello *
Update: Solution below Say you have a list of selected items from Finder. Say
I come across a php regular expression, mentioned below, I am not sure why
im joining and retrieving values from two tables using the below query. It displays
I am trying to extract a quoted text from an html response. However when
I have created a stored procedure shown below ,how will i call this from

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.