Home > Backend Development > PHP Tutorial > 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

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-07-13 17:35:07
Original
982 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.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 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 Issues
php data acquisition?
From 1970-01-01 08:00:00
0
0
0
PHP extension intl
From 1970-01-01 08:00:00
0
0
0
How to learn php well
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template