织梦园模板网专注于织梦企业模板、DeDe整站模板、织梦Html5模板等织梦模板的下载,提供DEDE织梦模板相关服务。织梦园织梦模板交流群
用户名:
密码:
注册
注册后享受折扣价

织梦获取栏目和首页的时间的函数

织梦园模板 / 2021-08-18 / 收藏
在织梦/include/extend.func.php 文件 添加以下代码
//获取当前栏目的url时间
function remote_filectime($url_file){   
    $headInf = get_headers($url_file,1);   
     $time= strtotime($headInf['Last-Modified']);  
 $timea = date('Y-m-d',$time).'T'.date('H:i:s',$time);
 return $timea;
}

织梦调用方法
{dede:global.cfg_indexurl function='remote_filectime(@me)'/} //首页获取url时间

{dede:type}[field:typelink function='remote_filectime(@me)'/]{/dede:type}//栏目页获取url时间

相关故障问题

收缩