“String to datetime PHP” Code-Antworten

PHP -Konvertierzeichenfolge bisher

$time = strtotime('10/16/2003');

$newformat = date('Y-m-d',$time);

echo $newformat;
// 2003-10-16
Sal-versij

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

Konvertieren Sie die Zeichenfolge zum Datum PHP

$s = '08/11/2010 19:37:02';
$date = strtotime($s);
echo date('Y-m-d H:i:s', $date);
Zidane (Vi Ly - VietNam)

PHP DATETIME CREATE

$date = DateTime::createFromFormat('d-m-Y', '15-12-2020');
ReInstall

Konvertieren Sie die Zeichenfolge bisher und Datum und Datum in PHP

phpCopy$oldDate = strtotime('03/08/2020');

$newDate = date('Y-m-d',$time);

echo $newDate;
//output: 2020-03-08
CodeGuruDev

Ähnliche Antworten wie “String to datetime PHP”

Fragen ähnlich wie “String to datetime PHP”

Weitere verwandte Antworten zu “String to datetime PHP” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen