>  기사  >  CMS 튜토리얼  >  Empire CMS는 어떻게 홈페이지를 자동으로 새로 고치나요?

Empire CMS는 어떻게 홈페이지를 자동으로 새로 고치나요?

藏色散人
藏色散人원래의
2019-12-11 09:11:384005검색

Empire CMS는 어떻게 홈페이지를 자동으로 새로 고치나요?

Empire CMS 홈페이지를 자동으로 새로 고치는 방법은 무엇입니까?

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

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

홈페이지 템플릿에 다음 코드를 추가하고, 하단에 넣어보세요.

코드는 다음과 같습니다.

<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, &#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는 어떻게 홈페이지를 자동으로 새로 고치나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.