ホームページ > 記事 > CMS チュートリアル > Imperial CMS はどのようにしてホームページを自動的に更新しますか?
Empire CMS はどのようにしてホームページを自動的に更新しますか?
この記事の例では、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 を希望の値に変更します。時間、単位は秒です。
コードは次のとおりです:
<?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; ?>
以上がImperial CMS はどのようにしてホームページを自動的に更新しますか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。