简单类型 / 日期和时间

<?php

$now = new DateTime();
$shortStyle = $now->format("m/d/y h:i a");
echo $shortStyle, "\n";
//shortStyle is "07/06/20 09:53 pm"
//or
echo date("m/d/y h:i a"), "\n";

$customStyle = $now->format("Y-m-d");
echo $customStyle, "\n";
//customStyle is 2015-10-16