我需要一个函数来将波斯历中的日期转换为对应的公历日期。我在本页的示例 #3 之后编写了以下函数。不幸的是,它确实有效?它有什么问题?使用 Intl 扩展的正确方法是什么?
function convert($time, $fromCalendar = 'gregorian', $toCalender = 'persian', $fromFormat = 'yyyy-MM-dd HH:mm:ss',
$toFormat = 'yyyy-MM-dd HH:mm:ss', $timezone = null, $local = 'fa_IR')
{
$formatter = IntlDateFormatter::create($local . '@calendar:' . $fromCalendar, null, null, $timezone, null, $fromFormat);
$formatter->setCalendar(IntlCalendar::createInstance(null, $local . '@calendar:' . $toCalender));
$output = $formatter->format($formatter->parse($time));
if ($output) return $output;
return $formatter->getErrorMessage();
}
可以在这里找到对 Intl 的一个很好的介绍:http: //devzone.zend.com/1500/internationalization-in-php-53/