您现在的位置是:首页 > 教程 > 帝国CMS教程帝国CMS教程
帝国CMS教程自动定时刷新首页的方法
丙赣2023-05-10 16:42:46帝国CMS教程已有人查阅
导读在 /e/ 建立文件夹 htmlindex 并设置 777权限,将下面代码保存在 /e/htmlindex/index_html.php,修改刷新时间,将文件中1200改为你想要的时间,单位为秒。
在首页模板中加入下面代码,尽量放在底部。
<script language="javascript" type="text/javascript" src="/e/htmlindex/index_html.php"></script>
在 /e/ 建立文件夹 htmlindex 并设置 777权限,将下面代码保存在 /e/htmlindex/index_html.php,修改刷新时间,将文件中1200改为你想要的时间,单位为秒。
<?php
require("../class/connect.php");
include("../class/db_sql.php");
include("../class/config.php");
include("../class/functions.php");
include("../class/t_functions.php");
require LoadLang("pub/fun.php");
require("../data/dbcache/class.php");
require("../data/dbcache/MemberLevel.php");
include("../class/chtmlfun.php");
$link=db_connect();
$empire=new mysqlquery();
$filepath_s="indexhtmlhc.txt";
$time=time();
@$filemtime=(int)filemtime($filepath_s)+1200;
/*
函数解释
file_exists() 函数检查文件或目录是否存在。
mkdir() 函数创建目录。
time() 函数返回当前时间的 Unix 时间戳。
filemtime() 函数返回文件内容上次的修改时间。
*/
if (!file_exists($filepath_s)){
fopen($filepath_s, 'w');
@chmod($filepath_s, 0777);
ReIndex();
}elseif(!file_exists($filepath_s) || (filemtime($filepath_s)+1200)<time()){
fopen($filepath_s, 'w');
@chmod($filepath_s, 0777);
ReIndex();
}else{
// do nothing
}
db_close();
$empire=null;
?>
本文标签:
很赞哦! ()
相关文章
随机图文
-
帝国CMS灵动标签调用广告列表的方法
帝国cms默认广告调用标签缺点1、无法调用列表类型,只能单个调用2、无法修改默认样式,默认样式100%被广告插件屏蔽 -
帝国CMS文章等内容转化成DOC并下载的方法
本次修改的目的:内容字段自动变DOC文件,并提供下载!和其他生成不同,此修改不生成真实的DOC文件,所以新增和修改信息不用增加生成时消耗的资源和空间,不修改帝国系统文件 -
帝国CMS手机版内容图片压缩的方法
PC端下上传的内容图片一般比较大,在移动端下加载会很慢,此时我们需要把这些图片处理下那么可以借助PHP的函数 preg_replace_callback: -
帝国CMS上一篇下一篇链接字数截取调用灵动标签sql当前栏目方法
一: 动态调用上一篇下一篇链接,二: 运用灵动标签和SQl语句调用,三: 运用灵动标签调用,比较简洁的方式
留言与评论 (共有 条评论) |