An open API service indexing awesome lists of open source software.

https://github.com/jmrashed/englishdatetoarabic

Convert a date format in PHP
https://github.com/jmrashed/englishdatetoarabic

arabic date dateformat english php

Last synced: 4 months ago
JSON representation

Convert a date format in PHP

Awesome Lists containing this project

README

        

# EnglishDateToArabic
Convert a date format in PHP
Suppose, your original date is 2021-01-06, and you want to convert as like d-m-Y

$originalDate = "2010-03-21";
$newDate = date("d-m-Y", strtotime($originalDate));
echo $newDate;
Output will be 21-03-2010