我使用的是php gettext,它可以在我的localhost上运行,但它在真正的服务器上不起作用?
require_once("gettext/lib/gettext.php");
require_once("gettext/lib/streams.php");
$local_file = new FileReader("gettext/local/{$_SESSION['lang_temp']}/LC_MESSAGES/dary.mo");
$local_fetch=new gettext_reader($local_file);
function _($text){
global $local_fetch;
return $local_fetch->translate($text);
}