Home  >  Article  >  Backend Development  >  Ideas and example analysis of generating a static file in PHP

Ideas and example analysis of generating a static file in PHP

黄舟
黄舟Original
2017-08-17 16:45:461267browse

Introducing a static file php generation class. In PHP website development, for website promotion and SEO needs, the website needs to be staticized for the whole site or partially. The simple understanding of PHP static is to make the website generate pages with static HTML. The form is displayed in front of visitors. PHP staticization is divided into pure staticization and pseudo-staticization. The difference between the two lies in the different processing mechanisms of PHP generating static pages.

The first step is to download a static file PHP generation class library we need to use for this course: http://www.php.cn/xiazai/leiku/545

Step 2: After the download is completed, find the php class file we need, unzip it to our local directory, and create a new php file!

The third step, after completion, we need to call this class in the new php file and instantiate the class:

<?php
include_once "caozuo.php";//引入类文件
$s=new CreateHtml();      //实例化

$s->start();
?>

<html>
<body>
<!--创建静态页面-->
asdfasdfasdfasdfasdfasdfasdfasdfasdf<br>
adfasdfasdf<br>
</body>
</html>
<?php
$s->end();
?>

Run the file, and the result will be as shown below:

Ideas and example analysis of generating a static file in PHP

Note:

1. Above The content shown in the example is the content of the static page we generated.

2. A new folder was also created locally, and three subfolders were created with the names of year, month and day:

Ideas and example analysis of generating a static file in PHP


#

The above is the detailed content of Ideas and example analysis of generating a static file in PHP. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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