您现在的位置是:首页 > 教程 > 帝国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二次开发PHP循环栏目和栏目下信息的方法
帝国CMS有自带的循环数据标签页可以实现以下效果,但用PHP来实现可以更灵活,可以同时调用各种您需要调用的数据。 -
帝国cms增加底部访问数统计计数器的方法
如下图所示效果!下载压缩包解压到网站主目录tongji.rar 打开e/public/viewclick/index.php 在if($down==2) { $classf.=',checkpl'; }下面加入if($down==99){$r=$emp -
帝国调用图片集教程的方法
帝国CMS图片集功能默认样式丑到爆了,但是想换个样式还没那么简单。因为帝国CMS默认把图片集字段写死了,想改帝国CMS图片集字段还必须改代码才行。 -
帝国CMS程序扩展变量说明当前栏目ID
帝国CMS程序扩展变量说明 程序扩展变量说明:通过这些变量可实现各种更复杂的系统。
留言与评论 (共有 条评论) |