在我的数据库中,我已将“已发布”行设置为时间戳,但在尝试对其进行转换/格式化时收到此通知:
Notice: A non well formed numeric value encountered
代码:
$posted = date('d/m/Y H:i:s', $row['posted']);
echo $posted;
我究竟做错了什么?
在我的数据库中,我已将“已发布”行设置为时间戳,但在尝试对其进行转换/格式化时收到此通知:
Notice: A non well formed numeric value encountered
代码:
$posted = date('d/m/Y H:i:s', $row['posted']);
echo $posted;
我究竟做错了什么?