我需要一种方法来使日期时间格式如下:“2013-10-23T12:30”
我是这样做的,但它不起作用:
echo "<input name='showdatetime' type='datetime-local' id='showdatetime' value='" . date( "Y-m-dAh:i" , $show->datetime ) . "'><br/>";
谢谢
答案 0 :(得分:0)
试试这个:
$date = getdate();
echo "<input name='showdatetime' type='datetime-local' id='showdatetime' value='" . date( "Y-m-d h:i A",$date[0] ) . "'><br/>";
答案 1 :(得分:0)