我想制作一个多语言应用程序 我听说过.po
文件但我找不到它 我制作了这段代码
我在我的应用程序中创建了一个名为的目录languages
并将ar_EG.po
文件放入其中并尝试languages\ar\LC_MESSAGES
了但它也不起作用
putenv('LC_ALL=ar_EG');
setlocale(LC_ALL, 'ar_EG', 'ara_EGY');
$domain = 'ar_EG';
bindtextdomain($domain, "./languages"); // I think the error here
textdomain($domain);
// to verify that localization is enabled and it works as intended:
echo strftime("%A %B %Y", strtotime("01/30/2013")), "<br>";
echo gettext("login"); // here not working