“Erstellen Sie das Datum aus String -PHP” Code-Antworten

PHP -Zeichenfolge bisher

$s = '06/10/2011 19:00:02';
$date = strtotime($s);
echo date('d/M/Y H:i:s', $date);
The above one is the one of the example of converting a string to date.
echo $s ->format('Y-m-d');
The above one is another method 
Filthy Fly

String to datetime PHP

$s = '06/10/2011 19:00:02';
$date = strtotime($s);
echo date('d/M/Y H:i:s', $date);
TC5550

Erstellen Sie das Datum aus String -PHP

$element = '15-Feb-2009';
$date = DateTime::createFromFormat('j-M-Y', $element);
Shy Seahorse

Datum der Zeichenfolge in PHP

Date to string

$date = "2021/03/13";
$newdate= date('d M, Y', strtotime($date));
echo $newdate;
Mr. Samy

PHP -Zeichenfolge bisher

$s = '06/10/2011 19:00:02';$date = strtotime($s);echo date('d/M/Y H:i:s', $date); The above one is the one of the example of converting a string to date. echo $s ->format('Y-m-d'); The above one is another method 
Distinct Dormouse

Ähnliche Antworten wie “Erstellen Sie das Datum aus String -PHP”

Fragen ähnlich wie “Erstellen Sie das Datum aus String -PHP”

Weitere verwandte Antworten zu “Erstellen Sie das Datum aus String -PHP” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen