当前位置:首页 > CMS教程 > 帝国cms > 列表

帝国CMS教程自动刷新首页

发布:smiling 来源: PHP粉丝网  添加日期:2014-11-22 11:41:02 浏览: 评论:0 

在首页模板中加入下面代码,尽量放在底部.

<script language="javascript" type="text/javascript" src="/e/htmlindex/index_html.php"></script>

在 /e/ 建立文件夹 htmlindex 并设置 777权限,将下面代码保存在 /e/htmlindex/index_html.php,修改刷新时间,将文件中1200改为你想要的时间,单位为秒.

  1. <?php 
  2. require("../class/connect.php"); 
  3. include("../class/db_sql.php"); 
  4. include("../class/config.php"); 
  5. include("../class/functions.php"); 
  6. include("../class/t_functions.php"); 
  7. require LoadLang("pub/fun.php"); 
  8. require("../data/dbcache/class.php"); 
  9. require("../data/dbcache/MemberLevel.php"); 
  10. include("../class/chtmlfun.php"); 
  11.  
  12. $link=db_connect(); 
  13. $empire=new mysqlquery(); 
  14. $filepath_s="indexhtmlhc.txt"
  15. $time=time(); 
  16. @$filemtime=(int)filemtime($filepath_s)+1200; 
  17. /* 
  18. 函数解释 
  19. file_exists() 函数检查文件或目录是否存在。 
  20. mkdir() 函数创建目录。 
  21. time() 函数返回当前时间的 Unix 时间戳。 
  22. filemtime() 函数返回文件内容上次的修改时间。 
  23. */ 
  24. if (!file_exists($filepath_s)){ 
  25. fopen($filepath_s'w'); 
  26. @chmod($filepath_s, 0777); 
  27. ReIndex(); 
  28. }elseif(!file_exists($filepath_s) || (filemtime($filepath_s)+1200)<time()){ //开源软件:phpfensi.com 
  29. fopen($filepath_s'w'); 
  30. @chmod($filepath_s, 0777); 
  31. ReIndex(); 
  32. }else
  33. // do nothing 
  34. db_close(); 
  35. $empire=null; 
  36. ?>

Tags: 帝国CMS自动刷新 帝国CMS首页

分享到: