dgettext

(PHP 4, PHP 5, PHP 7)

dgettextПозволяет переопределить текущий домен

Описание

string dgettext ( string $domain , string $message )

Функция dgettext() позволяет переопределить текущий домен domain для одного сообщения.

Список параметров

domain

Домен.

message

Сообщение.

Возвращаемые значения

В случае успеха возвращает значение типа string.

Смотрите также

  • gettext() - Ищет сообщение в текущем домене

Коментарии

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
2006-03-30 05:42:56
http://php5.kiev.ua/manual/ru/function.dgettext.html

    Поддержать сайт на родительском проекте КГБ