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

Konvertering af datoformat i PHP

Brug strtotime() og date():

$originalDate = "Mon Apr 22 2013 12:16:00 GMT+0530 (India Standard Time)" ;
$newDate = date("Y-m-d H:i:s", strtotime($originalDate));

(se strtotime og dato dokumenter på PHP-webstedet).

eller brug DateTime:

<?php
$source = "Mon Apr 22 2013 12:16:00 GMT+0530 (India Standard Time)";
$date = new DateTime($source);
echo $date->format("Y-m-d H:i:s"); // 22 2013 12:16:00
echo $date->format("Y-m-d H:i:s"); // 22 2013 12:16:00
?>

DEMO



  1. Saml kolonner med yderligere (særskilte) filtre

  2. sqlalchemy.exc.NoSuchModuleError:Kan ikke indlæse plugin:sqlalchemy.dialects:postgres

  3. SQL server skema og standard skema

  4. Automatiser mysql_secure_installation med echo-kommando via et shell-script