我的约会时间是$input = '19/02/2013'
。
如何在表格中插入此日期(ISO 8601格式)?
平台是SQL Server 2005或SQL Server 2008。
答案 0 :(得分:1)
认为应该这样做。
$dt = new DateTime(strtotime($input));
echo $dt->format(DateTime::ISO8601);
答案 1 :(得分:1)
您需要使用一些php函数转换为sqlserver日期格式
$input = 19/02/2013;
$new_date = explode('/',$input);
$date = $new_date[2]-$new_date[1]-$new_date[0];
对于ISO格式,您可以像这样使用
$date->format(DateTime::ISO8601);