/**
----------
関数: php2html($in_Url, $out_htmlFile, $out_logFile)
---- --- -----------------
@ 説明: 静的関数の生成
@ 著作権: Copyright (c) 2006 - 2011
@ 作成: 2006-08-01
@ 変更: 2006-10-27
@ ヒント: ここで使用するパスはサーバーの絶対パスです。指定されたパス ディレクトリが存在しない場合は、自動的に作成されます。
== === ============================================== === ================================
@ 例: php2html("http://www. jb51.net ", "/www/html/index.html", "/www/log/log.txt");
*/
// {{{ content
function php2html($in_Url, $out_htmlFile, $out_logFile)
{
$htmlContent = file_get_contents ($in_Url); // ファイルを $htmlContent 変数に読み込みます
/**
* @生成するファイルが存在するか確認
*/
if (is_file($out_htmlFile))
{
@unlink($out_htmlFile) ; // ファイルが既に存在する場合は削除します。
/**
* @ディレクトリ Web ページの作成セクション
*/
$dir_array =explode("/", dirname($out_htmlFile)); / "); //ディレクトリをルートに変更します
for($i=1;$i
if(is_dir($dir_array[$i ]))
{
chdir($dir_array[$i]);
else
{
mkdir($dir_array[$i]); $dir_array[ $i]);
}
}
/**
* @ディレクトリログセクションの作成
*/
$dir_array =explode("/", dirname($out_logFile)); ("/ "); // ディレクトリをルートに変更します
for($i=1;$i
if(is_dir($dir_array[ $i]))
{
chdir($dir_array[$i]);
else
{
mkdir($dir_array[$i], 0777); 🎜>chdir($ dir_array[$i]);
}
}
$handle = fopen($out_htmlFile, "w"); // ファイル ポインタを開き、ファイルを作成します
$ logHandle = fopen ($out_logFile, "a "); //ログ ファイルを開きます
/**
* @ディレクトリが書き込み可能かどうかを確認します
*/
if (!is_writable($out_htmlFile))
{
echo "ファイル: ".$out_htmlFile." 書き込み可能ではありません。ディレクトリ属性を確認して再試行してください。";
exit();
}
if (!is_writable($out_logFile))
{
echo "ファイル: ".$out_logFile ."書き込み可能ではありません。ディレクトリ属性を確認して再試行してください。";
exit()
}
/**
* @write ファイル
*/
if (!fwrite ($handle, $htmlContent) )
{
$logMsg = "ファイルの書き込み" . $out_htmlFile . "失敗"
}
else
{
$logMsg = "ファイルの作成" . $out_htmlFile . "成功";
/**
* @レコードログ
*/
$logMsg .= "(".date("Y-m-d H:i:s") .")rn";
fwrite ($logHandle, $logMsg);
fclose($logHandle) //ログ ポインターを閉じる
fclose ($handle); }
// }}}
php2html("http://www.jb51.net", dirname(__FILE__)."/yanjing_html/index.html", dirname(__FILE__)."/yanjing_log/log .txt");
echo "成功";
?>