search
HomeBackend DevelopmentPHP TutorialUse libTemplate to generate static web pages_PHP tutorial
Use libTemplate to generate static web pages_PHP tutorialJul 21, 2016 pm 04:09 PM
authorpublishexistaccomplishgenerateuseofWeb pagestatic

作者:iwind

原来在dev-club发表的一篇文章,将怎么用模板处理程序PHPlib 中的template.inc实现静态网页的生成,呵呵,居然被列入精华,并被多个网站转载,想来这是荣幸。其实网上这方面的东西很多了,我上此发布的所谓IAMS( iwind 文章管理系统),里面也有,有心人可以看一下。下面我只是简要在总结一次。

现在一般说生成静态网页的方法有三种,一个是配置服务器,大家可以到http://www.devarticles.com/c/b/PHP/ 去找找看,对于这个很多地方都有的。另外一个是用ob_函数控制输出。方法如下:先用ob_start();打开输出缓冲器,然后是对数据的分析,操作等等,跟着用ob_get_contents();获取缓冲区的内容,然后再写入文件。根据这个步骤,可以写出以下程序:
      ob_start();
   //主体部分,数据操作,处理,输出等等。。。
   require”global.php”;
   mysql_connect(“localhost”,”root”,””);
   …..
   //获取缓冲区内容
   $contents=ob_get_contents();
   //如果不想输出任何东西,可以加上这句
   ob_end_clean();
   //写入目的文件
   $fp=@fopen($targetFile,”w+”) or die(“打开文件时出错”);
   fwrite($fp,$contents);
?>

这样就把这个动态页面的内容写入了静态页面,$targetFile.像有的网站首页内容很多,要调用n多个查询语句时,不妨定时生成静态网页,既大幅提高了访问速度,也减轻了服务器负担。

你可以看出来,我用ob_只是处理单个页面,对于批量写入或更新多个页面,这个方法就不行了。这就是我要讲的第三种方法,用模板。模板是个好东东,现在大家都或多或少在用它,建议还不会简单模板处理的网友,花点时间去学它,一般的模板处理程序都很简单的。用模板实现静态网页的生成是非常简单的,方法就是获取分析结果,把分析结果写入文件。下面就以PHPlib中的template.inc来谈谈如果用模板生成静态网页。

一, 修改template.inc
加入以下的几个函数:
//将分析结果保存到文件中去
  function savetofile ($dir,$varname){
   $data=$this->finish($this->get_var($varname));
   $fp=fopen($dir,"w+");
   fwrite($fp,$data);
  }
  //清除已赋值数组
   function renew(){
    $this->varkeys=array();
    $this->varvals=array();
    $this->file=array();
    }

第一个函数是结果保存到静态文件中,第二个是把所有的模板分析变量都置为空,以免批量处理时相互影响。

二,实现静态网页生成。
$itpl->set_file(“main”,”mian.tpl”);
//分析模板变量
…..
//分析mainmains
$tpl->parse("mains","main");
//把分析结果mains存入main.html
$tpl->savetofile("main.html","mains");
//置空
$tpl->renew();//至关重要
?>

Haha, isn’t it very simple? main.html is the content we want. The following is an example of combining a database and encapsulating it with a function.
//$aid is the article id in the database, $table is the table name, $template is the template address, $tpl is an instance of template.inc
//Each aid Corresponding to a static web page address, there is a data table
//The structure of the table is similar to aid        ​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​// 3 $table where aid='$aid'”);
//Fetch data
$array=mysql_fetch_array($res);
//Read static web page address, title.
$target=$array[“target”];
$title=$array[“title”];
//Analysis template
$tpl->set_file(“main”,$ template);
//Replace the {title} variable in the template with $title
$itpl->set_var(“title”,$title”);
//Analyze the entire template
$itpl->set_var("mains","main");
//Write mains to the file
$tpl->savetofile($target,"mains");
//Set Empty
$tpl->renew();
}
?>

This way we can use the function staticInfo() to generate any article we want to process Static web pages. Table $target can also contain article content, author, source, etc. The method is the same.

Third, update the static web page
After an article is added to the database, we always add it to the database for some reasons. You need to modify some articles. At this time, you only need to regenerate the corresponding static web page. This is very convenient, because the target address field of the static web page is already in the table. You can see the key. The key to generating a static web page for an article is $template (template address) and $target (target address). We can determine the former first, and the latter can be a commonly used address for each article. There are 1, timestamp 2, hours minutes and seconds 3, because the chance of these repetitions will be very small.

Four, static web pages are generated in batches.

With static web pages generated from a single article. Function, then batch generation is very simple. Just get all the article aid, and then insert the function.

//Introducing functions

require "functions.php";

//Definition of some variables
$table="art";

$template="template/info.tpl";

$tpl=new Template(".");

//Connect to mysql and select the database

mysql_connect("localhost","root',"");
mysql_select_db("article") ;
//Send query statement
$res=mysql_query(“select aid from $table”);
while($r=mysql_fetch_array($res)){
$aid=$r[ "aid"];
//Generate static web pages
staticInfo($aid);
}
//End
echo "All static web pages have been updated/generated successfully";
? >

The above is a complete example. Our process for making CMS can be as follows:
1. Reporter publishes the article (put the manuscript content into the database)
2. Editor reviews (if he thinks it can be published, then he can generate the content into a static web page)
3. Return the manuscript (delete the generated static web page and delete the content in the database)

Then, the website content we access will be static. One question is, will this method take up a lot of space? http://www.knowsky.com has thousands of articles and only takes up 20M space. On the other hand, if you have 10,000 articles, you won’t be so stingy that you only buy 200M of space, right?

Maybe you are confused about generating a static article list. In fact, the method is the same, which is to calculate the page number. → Analyze the content of each page number → Write to file. To analyze the content of each page number, of course you need to write a function. If you generate it page by page, I'm afraid you will be laughed at ^_^.

Static web pages can not only reduce the load on the server and improve the access speed, but can also be used as a mirror website for easy backup, reducing the loss caused by attacks and speeding up the restoration speed. Of course, static web pages will also bring a lot of inconvenience to everyone. You need to make a balance between dynamic and static. You can also add php code called by js to the static web pages to achieve counting, instant updates, etc. (End)

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/314562.htmlTechArticleAuthor: iwind An article originally published in dev-club, how to use template in the template processing program PHPlib .inc realizes the generation of static web pages, haha, it is actually included in the essence and is used by many...
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
如何在PHP中实现SEO优化如何在PHP中实现SEO优化May 20, 2023 pm 01:30 PM

随着互联网的发展,SEO(SearchEngineOptimization,搜索引擎优化)已经成为了网站优化的重要一环。如果您想要使您的PHP网站在搜索引擎中获得更高的排名,就需要对SEO的内容有一定的了解了。本文将会介绍如何在PHP中实现SEO优化,内容包括网站结构优化、网页内容优化、外部链接优化,以及其他相关的优化技巧。一、网站结构优化网站结构对于S

如何在PHP中实现ERP系统如何在PHP中实现ERP系统May 20, 2023 pm 06:21 PM

随着电子商务和企业管理的发展,许多企业开始寻找更好的方法来处理其日常业务流程。ERP系统是一种能够整合企业各种业务流程的软件工具。它提供了全面的功能,包括生产、销售、采购、库存、财务等方面,帮助企业提高效率、控制成本和提高客户满意度。而在PHP编程语言中,也能够实现ERP系统,这就需要我们掌握一些基本的知识和技术。下面,我们将深入探讨如何在PHP中实现ERP

如何在PHP中实现CRM系统如何在PHP中实现CRM系统May 20, 2023 pm 12:31 PM

随着企业的发展,客户管理变得越来越重要。为了提高客户满意度和忠诚度,越来越多的企业采用客户关系管理系统(CRM)来帮助其管理客户关系。而PHP是一种流行的编程语言,因其简单易学、灵活和强大而被广泛应用于Web开发。那么,如何在PHP中实现CRM系统呢?本文将为您介绍实现CRM系统的步骤和技巧。Step1:需求分析在开始开发CRM系统之前,您需要进行需求分析

在PHP中如何实现物联网开发?在PHP中如何实现物联网开发?May 12, 2023 am 11:51 AM

随着物联网技术的发展和普及,越来越多的应用场景需要使用PHP语言进行物联网开发。PHP作为一种广泛应用于Web开发的脚本语言,它的易学易用、开发速度快、可扩展性强等特点,使其成为开发物联网应用的一种优秀选择。本文将介绍在PHP中实现物联网开发的常用技术和方法。一、传输协议和数据格式物联网设备通常使用TCP/IP或UDP协议进行数据传输,而HTTP协议是一个优

推荐哪款鼠标连点器软件使用效果较好?推荐哪款鼠标连点器软件使用效果较好?Jan 02, 2024 pm 07:54 PM

用什么鼠标连点器比较好对于连点器,我推荐使用AutoClicker。它是一款简单易用的鼠标连点软件,可以帮助你自动点击鼠标。原因是AutoClicker具有以下优点1.界面简洁直观,操作简单,适合初学者使用。2.支持自定义点击间隔时间,可以根据需要调整点击速度。3.可以设置点击次数或持续点击,满足不同的需求。4.免费软件,无需付费购买。如果你想使用连点器,可以尝试一下AutoClicker。生死狙击2罗技鼠标宏怎么设置以下是在生死狙击2中设置罗技鼠标宏的步骤:1.首先,确保你已经购买并安装了罗技

如何在PHP中实现验证码如何在PHP中实现验证码May 20, 2023 am 11:31 AM

随着互联网的不断发展,越来越多的网站需要使用验证码来保证安全性。验证码是一种借助人类能力而无法被计算机破解的认证技术,广泛应用于网站注册、登录、找回密码等功能中。下面将介绍如何使用PHP实现验证码功能。一、生成验证码图片验证码图片的生成是验证码功能的核心,需要生成一个随机字符,并将其渲染为图像展示给用户。在PHP中,可以使用GD库来生成图片。GD库是一种用于

使用扩展坞传输文件,T470s和T450s哪个更快?使用扩展坞传输文件,T470s和T450s哪个更快?Jan 03, 2024 pm 05:54 PM

t470s用扩展坞传文件快吗1相对较快2因为t470s使用扩展坞传文件可以同时进行多项任务,支持高速数据传输,可以快速完成文件传输。3当然,传输速度也会受到其他因素的影响,如文件大小、传输距离、传输内容等,需要根据具体情况进行衡量。但总的来说,使用扩展坞传文件还是相对较快及方便的。相对较快。因为T470s使用扩展坞可以连接更多的外设,包括外接硬盘、鼠标、键盘等,并且扩展坞有较快的传输速度,因此相对于其他传输方式,使用扩展坞传文件速度较快。同时,具体传输速度还需要考虑文件大小、硬件配置等因素。因此

在PHP中如何实现OA开发?在PHP中如何实现OA开发?May 12, 2023 am 08:36 AM

随着现代企业管理的需求与时俱进,各种管理软件如ERP、CRM、HRM和OA等软件的使用已经变得越来越普遍。特别是办公自动化(OA)软件,已经成为企业必不可少的一部分。随着PHP发展的越来越成熟,越来越多的企业开始使用PHP作为开发OA软件的工具,并取得了很好的效果。那么,在PHP中如何实现OA开发呢?确定OA的需求在开始OA的开发之前,必须先明确自己的OA需

See all articles

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

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools