RSS订阅
PHP程序员站--WWW.PHPERZ.COM  
网站地图
高级搜索
收藏本站

 当前位置:主页 >> PHP基础 >> 基础文章 >> 文章内容
PHP简单演示如何使用模板制作静态页面
[收藏此页[打印本页]   
来源:互联网  作者:未知  发布时间:2008-01-03

简单演示PHP如何使用模板生成静态页面。

模板文件templets.htm: phperz.com

以下为引用的内容:
<html>
  <head>
    <title>{title}</title>
  </head>
  <body>
    <p>Hello {hello}</p>
  </body>
</html>

php程序员站

 PHP文件代码:
以下为引用的内容:

<?php

phperz~com

  $title = 'phperz';
  $hello = 'phperz.com!';
  $file = file_get_contents('templets.htm'); www~phperz~com


  $file = str_replace(array('{title}','{hello}'),array($title,$hello), $file);
  echo $file; php程序员站

?>

phperz~com

phperz.com


 
 相关文章
 
发表评论
全部评论(0条)
 
 站内搜索
 热门搜索 基础  mysql  url  adodb
高级搜索 网站地图 站长工具 IP查询 收藏本站
 热点文章
 随机推荐
网站首页 | 网站地图 | 高级搜索 | RSS订阅
PHP程序员站 Copyright © 2007,PHPERZ.COM All Rights Reserved 粤ICP备07503606号 联系站长