2012-04-19 130 views
-1

如何僅使用格式(Y:m:d)爲表格返回日期顯示日期(無時間)?當我在sql中選擇日期時,它會以picture1的形式顯示(例如:2012-04-10),保存並顯示後,它會查看爲圖片2(例如:Apr 10 2012 12:00:00)。我想如何在表格返回日期顯示爲(例如:2012-04-10)不顯示爲(例如:Apr 10 2012 12:00:00)。感謝如何僅在PHP中顯示日期?

圖片1

enter image description here

圖片2

enter image description here

下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

看一看這裏http://php.net/manual/en/class.datetime。 php – wgcrouch 2012-04-19 11:03:25

+0

你想要做什麼?什麼是輸入日期格式,你想得到什麼? – 2012-04-19 11:06:07

+0

只是編輯的問題,並做了不好的解釋道歉 – srahifah 2012-04-20 01:43:49

回答

19

你可以試試這個 date('Y:m:d', strtotime($date));

+0

嗨,蓋伊,我得到這個錯誤,當使用strtodate:調用未定義的函數strtodate() – srahifah 2012-04-20 01:56:58

+1

我的錯誤是strtotime;) – gmaliar 2012-04-25 06:24:04

0

可以使用date()函數來顯示任何格式的日期。

2

您可以使用:strftime("%Y-%m-%d",$date);。同時檢查this鏈接。從文檔

內容:

的strftime - 根據區域設置

描述格式的本地時間/日期:串的strftime(字符串$格式[摘要$時間戳=時間( )])

%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 
0

試試這個..

SELECT DATE(ReturnDate) as dat FROM Batch 

返程日期:2012年9月12日12點24分12秒

DAT:2012年9月12日

+0

嗨Jey,我不能使用上面,因爲在SQL 2005沒有日期..只有日期時間只有 – srahifah 2012-04-20 01:59:55

+0

選擇日( ReturnDate)作爲來自批量的數據或選擇DATEPART(datepart,ReturnDate)作爲來自批量的數據 – Vaishu 2012-04-20 04:38:40