downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

dngettext> <dcngettext
[edit] Last updated: Thu, 23 May 2013

view this page in

dgettext

(PHP 4, PHP 5)

dgettextRemplace le domaine courant

Description

string dgettext ( string $domain , string $message )

dgettext() remplace le domaine courant domain pour une recherche simple dans message.

Liste de paramètres

domain

Le domaine

message

Le message

Valeurs de retour

Une chaîne de caractères en cas de succès.

Voir aussi

  • gettext() - Recherche un message dans le domaine courant



add a note add a note User Contributed Notes dgettext - [1 notes]
up
0
viral at noeticsolutions dot com
7 years ago
While using this function, remember to call bindtextdomain for as many domains as you want to use in your application.  For example, if I have module1 and module2 as 2 separate domains in the same application, you can do the following:

bindtextdomain("module1", "//path/to/my/locale/folder");
bindtextdomain("module2", "//path/to/my/locale/folder");
textdomain("module1");

echo _("Label1"); // this call will get the message from module1
echo dgettext("module2", "Label1"); // this call will get the message from module2

===
Viral Shah

 
show source | credits | sitemap | contact | advertising | mirror sites