程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php 生成靜態文件

php 生成靜態文件

編輯:關於PHP編程

<?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); 
$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的專欄

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved