数字化技能提升教程,数字化时代生存宝典

数字化百科 / 词条 / EXCMS 内容文件

EXCMS 内容文件

查看全部词条命名空间:Main

导航:返回上一页


EXCMS的内容页文件为:content.php,用于显示网站的内容。

代码显示

01	 0)){
41	    exit('Unknow Content!');
42	}
43	 
44	//检查栏目缓存是否最新
45	excms_func_checkChannelChange();
46	 
47	excms_import('EXCMS.update.UpdateContent');
48	$update = new UpdateContent();
49	$update->setContentid($contentid);
50	$update->setDisplay(false);
51	$update->setBrowseType(0);
52	$update->setContentPageon($_GET['page']);
53	$update->doUpdate();
54	 
55	?>

代码说明

  • excms_func_checkChannelChange(); //检查栏目缓存是否最新
  • excms_import('EXCMS.update.UpdateContent'); //引入更新内容UpdateContent类
  • $update->setContentid($contentid); //设置当前内容ID,ID以是整型、以逗号分隔的字符串,以及整型数组。
  • $update->setDisplay(false);//是否显示更新状态信息。
  • $update->setBrowseType(0);//设置是否是静态浏览。
  • $update->setContentPageon($_GET['page']);// 设置内容当前页
  • $update->doUpdate(); //执行动态浏览。

category:EXCMS