我有一个返回日期的查询,我想在将其显示给页面上的用户之前对其进行格式化。但是,当我使用格式时,日期似乎为空(显示 1969 年)。下面是获取数据的代码:
$sql = 'SELECT u.username, td.postingText, td.createdOn, td.lastUpdated
FROM threadDetails td, users u
WHERE blogThreadId = ?
AND td.userId = u.userId
order by td.createdOn DESC';
$stmt = $conn->stmt_init();
$stmt->prepare($sql);
$stmt->bind_param('s', $blogThreadId);
$stmt->bind_result($username, $postingText, $createdOn, $lastUpdated);
$stmt->execute();
$stmt->store_result();
$numrows = $stmt->num_rows;
while ($stmt->fetch())
{
$rowofdata=array(
'username' => $username,
'postingText' => $postingText,
'createdOn' => $createdOn,
'lastUpdated' => $lastUpdated,
);
$results[] = $rowofdata;
}
$stmt->close();
当我使用以下代码(在不同的函数中)打印出来时:
foreach ($threadData as $threadDetailItem)
{
$msg = sprintf ("<tr>%s %s %s %s %s </tr>\n",
"<td>" . $threadDetailItem['threadTitle'] . "</td>",
"<td>" . $threadDetailItem['username'] . "</td>",
"<td>" . $threadDetailItem['createdOn'] . "</td>",
"<td>" . $threadDetailItem['threadCount'] . "</td>",
"<td>" . $threadDetailItem['lastUpdated'] . "</td>");
echo $msg;
}
它打印出来(对于我创建的 On 或 last Updated 字段):
2012-04-15 16:14:55
当我替换 sprintf 行的部分时:
"<td>" . $threadDetailItem['createdOn'] . "</td>",
和:
"<td>" . date("F j, Y, g:i a", $threadDetailItem['createdOn']) . "</td>",
我明白了
“1969 年 12 月 31 日,晚上 7:33”和我的 phplog 中的一条消息,说明遇到了格式不正确的数值。我需要做什么才能正确显示正确的日期?我尝试将 sprintf 从 %s 更改为 %d,但这不起作用。
提前感谢您的建议。