在主页模板中参加下面代码,尽量放在底部。
<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"); requireLoadLang("pub/fun.php"); require("../data/dbcache/class.php"); require("../data/dbcache/MemberLevel.php"); include("../class/chtmlfun.php"); $link=db_connect(); $empire=newmysqlquery(); $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{ //donothing } db_close(); $empire=null; ?>
声明:有的资源均来自网络转载,版权归原作者所有,如有侵犯到您的权益 请联系邮箱:123456@qq.com 我们将配合处理!
原文地址:帝国CMS教程自动刷新首页函数发布于2022-06-02 07:43:18