网上只有列表也和内容页的文字提示代码,客户要求”已过期信息不可以点击进去“
看到可以处理日期的代码经过简单修改
即:到期信息不在生成URL,不就点击不进去了。。另外做了一个简单的页面,用于提示信息已经过期。
文件地址/e/class/connect.php
搜素://栏目链接
添加下面代码即可
//处理过期信息url
$odate = round(((strtotime($r[gqtime])-strtotime(date('Y-m-d')))/86400),0);
if ($odate>0)
{
$listtemp=str_replace('[!--titleurl--]',$titleurl,$listtemp);
}
else if ($odate==0)
{
$listtemp=str_replace('[!--titleurl--]',$titleurl,$listtemp);
}
else
{
$listtemp=str_replace('[!--titleurl--]','/daoqi.html',$listtemp);
}
© 版权声明
文章版权归作者所有,未经允许请勿转载。