Home >Backend Development >PHP Tutorial >PHP ob_start应用生成HTML静态页面

PHP ob_start应用生成HTML静态页面

WBOY
WBOYOriginal
2016-06-20 13:01:251022browse

所谓静态模版技术就是通过某种方式,使得用户在client端得到的是由PHP产生的html页面。如果这个html页面不会再被更新,那么当另外的用户再次浏览此页面时,程序将不会再调用PHP以及相关的数据库

<?php ob_start(); //打开缓冲区
  
phpinfo(); //使用phpinfo函数
  
$info=ob_get_contents(); //得到缓冲区的内容并且赋值给$info
  
$file=fopen('info.html','w'); //打开文件info.txt
  
fwrite($file,$info); //写入信息到info.txt
  
fclose($file); //关闭文件info.txt
  
?>


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