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

search for in the

dngettext> <dcngettext
Last updated: Fri, 04 Dec 2009

view this page in

dgettext

(PHP 4, PHP 5)

dgettextGeçerli uygulama adını değiştirir

Açıklama

string dgettext ( string $uygulama_adı , string $ileti )

dgettext() işlevi, belirtilen iletinin belli bir uygulama_adı altında aranabilmesini sağlar.

Değiştirgeler

uygulama_adı

Gettext iletileri için uygulama veya paket adı.

ileti

Özgün ileti.

Dönen Değerler

Başarılı olursa bir dizge ile döner.

Ayrıca Bakınız

  • gettext() - Geçerli uygulama alanında bir iletiyi arar



add a note add a note User Contributed Notes
dgettext
viral at noeticsolutions dot com
30-Mar-2006 10:42
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

dngettext> <dcngettext
Last updated: Fri, 04 Dec 2009
 
 
show source | credits | stats | sitemap | contact | advertising | mirror sites