使用mysql在php中選擇查詢以12小時格式顯示時間和日期。使用php/Mysql中的select查詢將日期/時間從24小時格式轉換爲12小時上午/下午
DB名稱演示
表名學生
DB結構
Id firstname lastname pubdate
int(11) varchar(100) varchar(100) timestamp
我已經插入5個記錄在學生的表並顯示使用select查詢一切都很正常 但我無法以適當的12小時格式顯示pubdate!
請有人幫我出來 實現它謝謝!
代碼
$sql = "select id,firstname,lastname,pubdate from student";
$results = mysqli_query($con,$sql);
while($row = mysqli_fetch_array($results))
{
echo $row['id'];
echo $row['firstname'];
echo $row['lastname'];
echo $row['pubdate'];
}
謝謝@Rahautos。 – Sjay
這是我的榮幸:) - @Sjay –
如果我的答案可以幫助你,請接受我的回答@Sjay –