Home > Backend Development > PHP Tutorial > Generate static files in php_PHP tutorial

Generate static files in php_PHP tutorial

WBOY
Release: 2016-07-13 17:48:58
Original
899 people have browsed it

date_default_timezone_set("PRC");   //设置东八区时间 
require "comm.php"; 
ob_start(); 
$id=intval($_GET['id']); 
$sql="select * from article where id = '{$id}'"; 
$rs=$db->query($sql); 
$row=$db->fetch_array($rs,MYSQL_ASSOC); 
$tpl->assign("art",$row); 
$tpl->display("tmp.html"); 
$xhtml=ob_get_contents(); 
$len=ob_get_length(); 
$status=ob_get_status(); 
ob_end_clean(); 
$filename=$id.".html"; 
$fpath="./xhtml/".$filename; 
print_r($status); 
if(is_file($fpath)){ 
    @unlink($fpath); 

$ofilename=fopen("./xhtml/".$filename,"w"); 
if(!is_writable($fpath)){ 
    return false; 

if(!fwrite($ofilename,$xhtml)){ 
    return false; 

?> 

摘自 chaojie2009的专栏

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/478388.htmlTechArticle?php date_default_timezone_set(PRC); //设置东八区时间 require comm.php; ob_start(); $id=intval($_GET[id]); $sql=select * from article where id = {$id}; $rs=$db-query($sql); $...
source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template