PHP - Blogger API时间格式为毫秒

时间:2018-01-27 08:20:32

标签: php timestamp blogger milliseconds

我对博主API中的博主时间戳到毫秒感到困惑。

$query = "(SELECT * FROM test where id='$id')";
$result = mysqli_query($link, $query);

echo "<table border='1'>";

while ($row = mysqli_fetch_assoc($result)) {
echo "<tr><th>Address</th><td>" . $row['address'] . "</td></tr>";
echo "<tr><th>City</th><td>" . $row['city'] . "</td></tr>";
echo "<tr><th>State</th><td>" . $row['state'] . "</td></tr>";
}
echo "</table>";

我知道如何将日期转换为毫秒

2018-01-26T07:06:00-08:00

但这不是日期的正常格式,我无法破解博客时间戳并将其转换为毫秒。提前致谢

2 个答案:

答案 0 :(得分:0)

您可以使用strtotime并按日期格式化日期

$dateStr = "2018-01-26T07:06:00-08:00";
$date = date("d M Y, D", strtotime($dateStr));
  

产出:2018年1月26日,星期五

Working Link

答案 1 :(得分:-1)

使用strtotime

echo strtotime("2018-01-26T07:06:00-08:00");