我的目标是让它看看帖子是否允许评论,如果确实如此,则检查以确保date_comments_expires不在过去的日期之前。我不太确定如何完成这个if语句。有什么帮助吗?
if ($mainNews[0]['allow_comments'] == 'Yes' AND $mainNews[0]['date_comments_expire'] == ) {
编辑:
这是我更新的代码,其中我正在调用非对象的成员函数getTimeStamp
if ($mainNews[0]['allow_comments'] == 'Yes' AND $mainNews[0]['date_comments_expire']->getTimestamp() > time() ) {
echo "<a href=\"#\"></a><span>".$mainNews[0]['number_of_comments']."</span>";
}
答案 0 :(得分:2)
这完全取决于数组的date_comments_expire
索引中包含的内容。我希望它可以是一个unix时间戳,说明评论何时到期,或者对其进行合理的文本解释。
如果你使用的是unix时间戳,那么你做得很好。如果是文本,那么在继续之前,您需要将其转换为unix时间戳。最好的功能是strtotime()
。它可以解析各种文本日期时间表示,并返回一个unix时间戳。
将端点表示为时间戳后,您可以将其与当前时间进行比较。为此,您可以使用time()
函数,该函数将当前时间作为unix时间戳返回。
由于unix时间戳只是整数(具体来说,是1970年1月1日以来的秒数),所以这是一个简单的比较。
最后,您的代码如下所示:
// convert to timestamp if necessary, remove if unneeded
$commentExpiry == strtotime($mainNews[0]['date_comments_expire']);
if ($mainNews[0]['allow_comments'] == 'Yes' AND
$commentExpiry > time()) {
//submit comments
} else {
//error handling
}