PHP Carbon extension with IntlCalendars to support:
- Japanese
- Buddhist
- Chinese
- Persian
- Indian
- Islamic
- Hebrew
- Coptic
- Ethiopic Calendar types in output.
printf("Right now is %s", IntlCarbon::now()->setCalendar('persian')->toDateTimeString());
//Right now is 1394-04-17 23:38:00
printf("%s",IntlCarbon::now()->setCalendar('islamic')->setLang('ar_UA')->toDateTimeString());
//١٤٣٦-٠٩-٢٢ ٢٣:٣٩:٤٢
- complete tests