2

我需要一个函数来将波斯历中的日期转换为对应的公历日期。我在本页的示例 #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/

4

1 回答 1

1

这似乎很有希望:http ://www.phpclasses.org/package/4852-PHP-Convert-and-format-dates-of-the-Persian-calendar.html

然后你会这样做:

$persian=new persian_date();  
echo $persian->date('y-m-d H:i:s');
于 2014-06-05T13:18:19.147 回答