想在某个时间段,例如:2014/5/21-2014/5/31显示“高级会员”日期超过2014/5/31则显示“会员已过期”,应该怎么做?
------解决方案--------------------
<?php
if(time()>=strtotime('2014-5-21') && time()<=strtotime('2014-5-31')){
echo '高级会员';
}else{
echo '会员已过期';
}
?>
<?php
if(time()>=strtotime('2014-5-21') && time()<=strtotime('2014-5-31')){
echo '高级会员';
}else{
echo '会员已过期';
}
?>