1
我嘗試從我的mysql服務器獲取當前時間戳。我知道命令SELECT CURRENT_TIMESTAMP。但我需要將其作爲字符串進行回顯。有人知道我該怎麼做嗎?從mySQL服務器回顯當前時間戳
<?php
include_once("../DatenbankVerbindungen/dbconnect.php");
$query = mysqli_query($connection, "SELECT CURRENT_TIMESTAMP;");
echo gmdate("Y-m-d\TH:i:s\Z", $query);
mysqli_close($connection);
?>
您可以使用'date_format()'在'select'中將其格式化爲一個字符串。 –