发布于 2012-09-24 07:41:13
如果你想翻译你的网站,有两种类型的内容:
-formatable内容,如日期或可由IntlExtension处理的消息。例如
$today = new DateTime;
//if you do not use Intl
echo $today->format('Y-m-D');//in english :-(
//with IntlDateFormatter
$formatter = new IntlDateFormatter( "de-DE" ,IntlDateFormatter::FULL,
IntlDateFormatter::FULL,
'America/Los_Angeles',IntlDateFormatter::GREGORIAN );
echo $formatter->format($today);//in german如果您想翻译不可形成的字符串(例如标题,甚至内容),您有两个解决方案:
https://stackoverflow.com/questions/12560487
复制相似问题