Zend Jalali 日期
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
)
);
不会像我想要的那样工作。
Does Zend support jalali date and calendar?
And How can i get that ?
I tried this:
$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
)
);
will not work as I want for me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Zend_Date
支持fa_IR
日期,但我不相信它会进行从公历到贾拉里的日历转换。您必须手动设置日期。但是,以下是如何将Zend_Locale
与Zend_Date
一起用于fa_IR
Edit
我忘了提及。我将
Zend_Date
format_type
设置为php
作为默认格式Zend_Date
supportsfa_IR
dates, but I don't believe it will do calendar conversions from Gregorian to Jalali. You will have to set date manually. However, here is how you useZend_Locale
withZend_Date
forfa_IR
Edit
I forgot to mention. I have
Zend_Date
format_type
set tophp
as default format