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

WBOY
Release: 2016-07-13 17:35:07
Original
877 people have browsed it

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.com true http: //www.bkjia.com/PHPjc/508419.html TechArticle Template 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...
source:php.cn
Statement of this Website
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
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!