PHP   发布时间:2019-11-19  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了php2html php生成静态页函数大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。

<?php
/*
------------------------
Function: php2html($in_Url,$out_htmlFile,$out_logFilE)
------------------------
@ Description: 生成静态函数
@ Copyright: Copyright (C) 2006 - 2011
@ Create: 2006-08-01
@ Modify: 2006-10-27
@ 提示:这里要用到的路径为服务器绝对路径; 若给定的路径目录不存在则自动创建
=======================================================================================
@ Example:php2html("//cn.js-code.com","/www/html/index.html","/www/log/log.txt");
/
// {{{ contents
function php2html($in_Url,$out_logFilE)
{
$htmlContent = file_get_contents($in_Url); //将文件读入 $htmlContent 变量
/
@检查要生成的文件是否存在
/
if (is_file($out_htmlFilE))
{
@unlink($out_htmlFilE);//若文件已存在,则删除
}
/

@ 创建目录 网页部分
/
$dir_array = explode("/",dirname($out_htmlFilE));
chdir("/"); //改变目录到根
for($i=1;$i<count($dir_array);$i++)
{
if(is_dir($dir_arraY[$i]))
{
chdir($dir_arraY[$i]);
}
else
{ @H_260_1@mkdir($dir_arraY[$i]);
chdir($dir_arraY[$i]);
}
}
/
@ 创建目录 日志部分
/
$dir_array = explode("/",dirname($out_logFilE));
chdir("/"); //改变目录到根
for($i=1;$i<count($dir_array);$i++)
{
if(is_dir($dir_arraY[$i]))
{
chdir($dir_arraY[$i]);
}
else
{ @H_260_1@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();
}
/
@写入文件
/
if (!fwrite ($handle,$htmlContent))
{
$logMsg = "写入文件" . $out_htmlFile . "失败";
}
else
{
$logMsg = "创建文件" . $out_htmlFile . "成功";
}
/

@记录日志
/
$logMsg .= "(".date("Y-m-d H:i:s") .")\r\n";
fwrite ($logHandle,$logMsg);
fclose($logHandlE); //关闭日志指针
fclose ($handlE); //关闭指针
}
// }}}
php2html("//cn.js-code.com",dirname(FILE)."/yanjing_html/index.html",dirname(FILE)."/yanjing_log/log.txt");
echo "成功";
?>

大佬总结

以上是大佬教程为你收集整理的php2html php生成静态页函数全部内容,希望文章能够帮你解决php2html php生成静态页函数所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。