“Crie data a partir de string php” Respostas de código

string php até hoje

$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 para DateTime PHP

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

Crie data a partir de string php

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

data para string no php

Date to string

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

string php até hoje

$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

Respostas semelhantes a “Crie data a partir de string php”

Perguntas semelhantes a “Crie data a partir de string php”

Mais respostas relacionadas para “Crie data a partir de string php” em PHP

Procure respostas de código populares por idioma

Procurar outros idiomas de código