gpt4 book ai didi

php - Zend Jalali 日期

转载 作者:搜寻专家 更新时间:2023-10-31 20:51:55 24 4
gpt4 key购买 nike

Zend 是否支持 jalali 日期和日历?
我怎样才能得到它?
我试过这个:

    $locale = new Zend_Locale('fa_IR');
$date = new Zend_Date();
$new_date= Zend_Locale_Format::getDate($date,
array(
'date_format' =>Zend_Locale_Format::getDateFormat('fa_IR'),
'locale' => $locale,
'fix_date' =>true
)
);

不会像我想要的那样工作。

最佳答案

Zend_Date 支持 fa_IR 日期,但我不相信它会进行从 Gregorian 到 Jalali 的日历转换。您将必须手动设置日期。但是,这里是如何将 Zend_LocaleZend_Date 一起用于 fa_IR

// Manual conversion from Gregorian date 7/7/2011 to Jalali date 1390/4/16
$date = new Zend_Date('1390/4/16');
$date->setLocale('fa_IR');
echo $date->toString('F j, Y, g:i a');
// prints آوریل 16, 1390, 12:00 قبل از ظهر

编辑

忘记说了。我将 Zend_Date format_type 设置为 php 作为默认格式

Zend_Date::setOptions(array('format_type' => 'php'));

关于php - Zend Jalali 日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6610172/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com