Mysql
 sql >> Database >  >> RDS >> Mysql

come formattare la data proveniente da MySQL

Puoi usare strtotime per convertire la rappresentazione in stringa della data in un timestamp, puoi utilizzare date per convertire il timestamp nel formato che preferisci:

$timestamp = strtotime($frmdate);
$formatted_date = date("j M. Y", $timestamp);

Puoi anche spostare la traduzione dal formato aaaa-mm-gg al timestamp nella query stessa, utilizzando:

select unix_timestamp(field_name) as field_name_timestamp