Home  >  Article  >  Backend Development  >  PHP is very simple to use templates to create static pages_PHP tutorial

PHP is very simple to use templates to create static pages_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 17:35:07891browse

Template file templates.htm:



{title}


Hello {hello}



PHP file code:

$title = phperz;
$hello = phperz.com!;
$file = file_get_contents(templets.htm);
$file = str_replace(array({title},{hello}),array($title,$hello), $file);
echo $file;

?>

How about it? It’s pretty simple, of course. Of course, this is just an idea. You have to use your own brain for specific applications.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/508419.htmlTechArticleTemplate file templates.htm: html head title{title}/title /head body pHello {hello}/p / body /html PHP file code: ?php $title = phperz; $hello = phperz.com!; $file = file_get_con...
Statement:
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