PHP intl can convert a Gregorian date to other calendar type

后端 未结 3 1879
野性不改
野性不改 2020-12-21 11:57

PHP intl can convert a Gregorian date to other calendar type.

For example Gregorian to Hijri, 2017/04/11 to 1396/01/22

Or we must u

3条回答
  •  眼角桃花
    2020-12-21 12:15

    PHP Already has date format functions, you need to convert first with strtotime() function and get the desired values with date()

    
    

    Example working here: https://eval.in/772416

    You can get more info about date in php here: http://php.net/manual/en/function.date.php

提交回复
热议问题