“PHP Changr -Datumsformat” Code-Antworten

PHP -Änderungsdatumformat

To convert the date-time format PHP provides strtotime() and date() function. We change the date format from one format to another.

Change YYYY-MM-DD to DD-MM-YYYY
<? php.
$currDate = "2020-04-18";
$changeDate = date("d-m-Y", strtotime($currDate));
echo "Changed date format is: ". $changeDate. " (MM-DD-YYYY)";
?>
Ankur

PHP Changr -Datumsformat

$originalDate = "2010-03-21";
$newDate = date("d-m-Y", strtotime($originalDate));
Selfish Sable

Ähnliche Antworten wie “PHP Changr -Datumsformat”

Fragen ähnlich wie “PHP Changr -Datumsformat”

Weitere verwandte Antworten zu “PHP Changr -Datumsformat” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen