如何以表格返回日期的格式(Y:m:d)显示日期(没有时间)?当我在sql中选择日期时,它将被视为picture1(例如:2012-04-10),在我保存并显示回来之后它将视图为picture2(例如:2012年4月10日12:00:00)。我想如何在表格返回日期显示为(例如:2012-04-10)不显示为(例如:2012年4月10日12:00:00)。感谢
图片1
图2
在Result.php下
$query = "SELECT ....BE.[batch_id],BED.[ReturnDate]
FROM .... as BE
INNER JOIN .... as BED
ON BE.[batch_exception_id] = BED.[batch_exception_id]
WHERE BE.[process_date_time] between '$date1' and '$date2'";
while ($row = mssql_fetch_assoc($result)) {
$rDate = $row['ReturnDate'];
$beID = $row['batch_exception_id'];
$proc_dt = $row['process_date_time'];
$batchid = $row['batch_id'];
echo "<tr>";
echo "<td>" . $beID . "<input type='hidden' name='beID[$i]' value='$beID'/></td>";
echo "<td>" . $batchid . "<input type='hidden' name='batchid[$i]' value='$batchid'/></td>";
echo "<td>" . $proc_dt . "<input type='hidden' name='procDT[$i]' value='$proc_dt'/></td>";
echo "<td>";
$date="date[".$i."]";
echo "<input type='text' name='date[$i]' id='$date' value='$rDate' onclick=\"fPopCalendar('".$date."')\">";
$i++;
echo "</td>";
echo "</tr>";
}
在Save.php下
//Select database
$selected = mssql_select_db($myDB, $link)or die("Couldn't open database $myDB");
for ($i=0; $i<$tot_rec;$i++) {
$ret_date=trim($arrretDate[$i]);
ECHO "$ret_date<br>";
if (strlen($ret_date)>0) {
$query = "UPDATE .....
SET [ReturnDate] = '$ret_date'
WHERE [batch_exception_id]= '$arrbeID[$i]'";
$result = mssql_query($query);}
}
//execute the SQL query
if ($result){
header("Location:....");}
else{
echo "Error Save";
}
答案 0 :(得分:22)
你可以试试这个
date('Y:m:d', strtotime($date));
答案 1 :(得分:3)
您可以使用:strftime("%Y-%m-%d",$date);
。另请查看this链接。
文档中的内容:
strftime - 根据区域设置格式化本地时间/日期
描述:字符串strftime(字符串$ format [,int $ timestamp = time()])
%Y Four digit representation for the year Example: 2038
%m Two digit representation of the month 01 (for January) through 12 (for December)
%d Two-digit day of the month (with leading zeros) 01 to 31
答案 2 :(得分:0)
您可以使用date()功能以任何格式显示日期。
答案 3 :(得分:0)
试试这个..
SELECT DATE( ReturnDate ) as dat FROM Batch
返回日期:2012年12月12日12:24:12
dat:sep 12 2012