>  기사  >  CMS 튜토리얼  >  Empire CMS 홈페이지를 자동으로 새로 고치는 방법

Empire CMS 홈페이지를 자동으로 새로 고치는 방법

silencement
silencement앞으로
2019-11-27 14:03:192115검색

Empire CMS 홈페이지를 자동으로 새로 고치는 방법

이 문서의 예에서는 Empire CMS가 홈페이지를 자동으로 새로 고치는 방법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 구체적인 구현 방법은 다음과 같습니다.

홈페이지 템플릿에 다음 코드를 추가하고 하단에 배치해 보세요.

코드는 다음과 같습니다. :

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

/e/에 htmlindex 폴더를 생성하고 777 권한을 설정합니다. /e/htmlindex/index_html.php에 다음 코드를 저장하고 새로 고침 시간을 수정한 후 파일에서 1200을 다음으로 변경합니다. #🎜🎜 #

"

Empire cms tutorial "을 공부하는 것이 좋습니다. #

<?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, &#39;w&#39;);
@chmod($filepath_s, 0777);
ReIndex();
}elseif(!file_exists($filepath_s) || (filemtime($filepath_s)+1200)<time()){
fopen($filepath_s, &#39;w&#39;);
@chmod($filepath_s, 0777);
ReIndex();
}else{
// do nothing
}
db_close();
$empire=null;
?>
이 기사가 모든 사람이 Empire CMS 웹 사이트를 구축하는 데 도움이 되기를 바랍니다.

위 내용은 Empire CMS 홈페이지를 자동으로 새로 고치는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
이 기사는 www.word666.com에서 복제됩니다. 침해가 있는 경우 admin@php.cn으로 문의하시기 바랍니다. 삭제