知识屋:更实用的电脑技术知识网站
所在位置:首页 > 编程技术 > PHP编程

PHP之静态HTML

发布时间:2015-05-27 19:32:46作者:知识屋

静态HTML和从数据库里读取内容的动态页相比一直都有其不可替换的良好表现。在空间不做为第一考虑因素的时候,静态HTML显示更加适用。

PHP生成静态页,我总结了下有以下两个方法:

[php] 
<?php 
$src = './index.tpl'; 
 
$content = file_get_content($src); 
$content = str_replace('{title}' , '标题' , $content); 
//相同替换 
$content = str_replace( ... ); 
 
$fp = fopen('./index.html' , 'w') or die('can not open file'); 
fputs($fp , $content); 
fclose($fp); 
unset($fp); 
index.tpl

[html] 
<div id='title'>{title}</div> 
 

第二两种就相对简单多了

[php] 
<?php 
ob_start(); 
 
$top_id = 34; 
require './index.php'; 
 
ob_end_clean(); 
 
/**www.zhishiwu.com
 *在index.php 可以将$top_id做为参数;因为这个是可以传递到index.php这个页面的。
 *然后在index.php里写入生成HTML的代码。即不需要替换也可以生成HTML;
 */ 


作者:tomyjohn
(免责声明:文章内容如涉及作品内容、版权和其它问题,请及时与我们联系,我们将在第一时间删除内容,文章内容仅供参考)
收藏
  • 人气文章
  • 最新文章
  • 下载排行榜
  • 热门排行榜