intl, , php , 5.4. , IntlCalendar :
$date = IntlCalendar::createInstance(
'Asia/Tehran',
'fa_IR@calendar=persian'
);
:
$date->set(1395, 5, 15, 19, 17, 11); // Notice that month number begin from 0 not 1.
IntlDateFormatter :
$intlDateFormatter = new IntlDateFormatter(
"en_US",
IntlDateFormatter::FULL,
IntlDateFormatter::FULL,
'Asia/Tehran',
IntlDateFormatter::GREGORIAN,
'yyyy/MM/dd HH:mm:ss'
);
toDateTime :
var_dump($intlDateFormatter->format($date));
PS: , : https://github.com/meysampg/intldate, date , IntlDateBehavior.