当前位置:编程学习 > php >>

PHP如何设计模板制作静态页面

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

模板文件templets.htm:

<html>
 <head>
  <title>{title}</title>
 </head>
 <body>
  <p>Hello {hello}</p>
 </body>
</html>

PHP文件代码:

<?php
$title = 'bianceng.cn' ;
$hello = 'www.bianceng.cn!' ;
$file = file_get_contents ( 'templets.htm' );
$file = str_replace (array( '{title}' , '{hello}' ),array( $title , $hello ), $file );
echo $file ;
?>


学习电脑编程语言,请点 www.zzzyk.com《电脑教程》栏目

CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,