您好我想设置一个条件,一旦帖子已经发布30分钟以上将无法编辑或自定义。
我的时代码:
<?php
$post_date = $threads['created_at'];
$now = time();
echo timespan($post_date, $now, 1). ' '.lang_key('ago') ?>
我希望有这样的条件:
请注意,此代码仅为示例。
<?php if(timespan >= '30 mins'){
//disable the edit button
}else{
//enable the edit button
} ?>
答案 0 :(得分:1)
假设一个格式良好的时间戳,你可以这样做:
if (strtotime($threads['created_at']) < strtotime("-30 minutes")) {
echo ' is older than 30 mins';
} else {
echo ' is not older than 30 mins';
}