Home Backend Development PHP Tutorial php生成网站静态页方法

php生成网站静态页方法

Jun 20, 2016 pm 01:01 PM
website performance

大流量网站为了优化服务器性能消耗,常常把网站页面生成为静态文件,可以有效提高服务性能。

下面分享一个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("http://www.scutephp.com", "/www/html/index.html", "/www/log/log.txt");
*/
// {{{ contents
function php2html($in_Url, $out_htmlFile, $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
{
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
{
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("http://www.scutephp.com", dirname(__FILE__)."/yanjing_html/index.html", dirname(__FILE__)."/yanjing_log/log.txt");
echo "成功";
?>
Copy after login

 


Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: How To Unlock Everything In MyRise
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

The key to improving website performance: PHP-FPM optimization practical guide The key to improving website performance: PHP-FPM optimization practical guide Oct 05, 2023 am 09:28 AM

The key to improving website performance: PHP-FPM optimization practical guide With the rapid development of the Internet, websites play an increasingly important role. For website operators, improving website performance is crucial, not only to improve user experience, but also to improve search engine rankings. PHP-FPM (FastCGIProcessManager), as the process manager for PHP running, plays a vital role in improving website performance. This article will provide you with PHP-FPM optimization

Analysis of the impact of PHP staticization on website performance Analysis of the impact of PHP staticization on website performance Mar 05, 2024 pm 01:48 PM

Analysis of the impact of PHP staticization on website performance With the rapid development of the Internet, website performance optimization has become increasingly important. Among them, PHP static technology is an effective means to improve website performance and user experience. This article will analyze the impact of PHP staticization on website performance and provide specific code examples. 1. Principle of static PHP PHP is a dynamic language. Every time a page is accessed, the server needs to dynamically generate HTML content, which will increase the burden and response time of the server. And PHP static technology

Essential front-end development skills for optimizing website performance Essential front-end development skills for optimizing website performance Feb 02, 2024 pm 09:31 PM

As an important part of website design and development, front-end development plays the role of a bridge connecting users and websites. In today's Internet era where the amount of information is exploding, users have increasingly higher requirements for website performance. Therefore, understanding and mastering some practical skills to improve website performance has become one of the important tasks of front-end developers. This article will reveal the secret weapon of front-end development and help you better improve website performance. First, we’re going to talk about website file optimization. In front-end development, optimizing website files is a key step to improve website performance.

Best Practices: HTTP Status Code Handling to Optimize Website Performance Best Practices: HTTP Status Code Handling to Optimize Website Performance Dec 26, 2023 pm 05:09 PM

How to correctly handle HTTP status codes to improve website performance With the rapid development of the Internet, website performance has become an important part of user experience. HTTP status codes are a communication tool between websites and users. Correct handling of status codes can effectively improve website performance, thereby improving user satisfaction and retention rates. First, let’s understand the classification and function of HTTP status codes. HTTP status code is a standardized response when transmitting data between the client and the server. It is used to indicate the server's processing result of the request. HTT

How to optimize web site performance How to optimize web site performance Oct 11, 2023 pm 04:43 PM

Methods to optimize web website performance include compressing and optimizing web page code, optimizing image loading, using caching technology, reducing the number of HTTP requests, optimizing database queries, using appropriate server and host configurations, and regularly monitoring and optimizing website performance. Detailed introduction: 1. Compress and optimize the code of the web page. By using compression tools, you can compress the HTML, CSS and JavaScript codes of the web page, thereby reducing the loading time of the web page. You can also merge and compress CSS and JavaScript files, etc.

Improve website performance: Use Celery Redis Django to implement asynchronous task processing Improve website performance: Use Celery Redis Django to implement asynchronous task processing Sep 26, 2023 pm 09:51 PM

Improving website performance: Using CeleryRedisDjango to implement asynchronous task processing Introduction: In modern web applications, user experience is very critical, and optimization of website performance is a very important part of it. When dealing with time-consuming tasks, waiting for the task to be completed synchronously will significantly reduce the response speed and performance of the website. In order to solve this problem, we can use CeleryRedisDjango to implement asynchronous task processing to improve the performance of the website. 1. Celery

Nginx load balancing multiple policy configurations to improve website performance Nginx load balancing multiple policy configurations to improve website performance Jul 05, 2023 pm 05:45 PM

Nginx load balances multiple policy configurations to improve website performance [Introduction] In today's Internet era, website performance is a crucial indicator. When the number of visits to a website gradually increases, load balancing becomes an indispensable tool in order to ensure the stability and response speed of the website. As a web server software with superior performance, flexibility and ease of use, Nginx provides a variety of load balancing strategies. This article will introduce how to configure Nginx to improve website performance. [Introduction to Load Balancing Strategy] Load Balancing (Load

Sharing practical experience in optimizing website performance: comprehensive application from front-end to back-end Sharing practical experience in optimizing website performance: comprehensive application from front-end to back-end Feb 03, 2024 am 08:13 AM

From front-end to back-end: Sharing practical experience in comprehensively optimizing website performance. In recent years, with the rapid development of the Internet, website performance optimization has become more and more important. Users have increasingly higher requirements for website access speed and response time. Optimizing website performance has become an important task that every developer should pay attention to. This article will share some practical experience to help developers comprehensively optimize website performance, from front-end to back-end, to make the user experience smoother. First of all, optimizing website performance from a front-end perspective is a very important aspect. Front-end developers should try to minimize

See all articles