gettext

(PHP 3 >= 3.0.7, PHP 4, PHP 5)

gettext -- 現在のドメインのメッセージを参照する

説明

string gettext ( string message )

現在のドメインのメッセージを参照します。

パラメータ

message

返り値

翻訳テーブルに翻訳文字列が見つかった場合にその文字列、 あるいは見つからなかった場合に元の文字列を返します。

例 1. gettext() のチェック

<?php
// ドイツ語に設定します
setlocale(LC_ALL, 'de_DE');

// 変換テーブルの場所を指定します
bindtextdomain("myPHPApp", "./locale");

// ドメインを選択します
textdomain("myPHPApp");

// 翻訳内容は ./locale/de_DE/LC_MESSAGES/myPHPApp.mo から検索されます

// テストメッセージを出力します
echo gettext("Welcome to My PHP Application");

// あるいは、gettext() のかわりに _() も使用可能です
echo _("Have a nice day");
?>

注意

注意: You may use the underscore character '_' as an alias to this function.

参考

setlocale()