Php在Hijri日历中的最后一天

时间:2015-09-04 13:37:40

标签: php calendar hijri

我们手头有这样的数据。 Hijri日历中的最后一天。我怎么得到它?

1437-03-21
1437-03-22
1437-03-23
1437-03-24
1437-03-25
1437-03-26
1437-03-27
1437-03-28
1437-03-29
1437-03-30
1437-04-01
1437-04-02
1437-04-03
1437-04-04
1437-04-05
1437-04-06
1437-04-07

1 个答案:

答案 0 :(得分:-1)

尝试使用HijriDateLib http://github.com/hubaishan/hijridatelib 使用函数calendar \ days_in_month

<?php
require_once('hijri.class.php');
echo (new hijri\Calendar()).days_in_month(3,1437);
?>