PHP模板函数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP模板函数相关的知识,希望对你有一定的参考价值。
Based on Jdub7's Pure php Template functionhttp://snipplr.com/view/10797/pure-php-template-function/
<?php foreach ($vars as $key => $var) { } return $template; } 'title' => 'Hello World!', 'text' => 'Hello!', 'link' => 'http://www.bigsmoke.us/php-templates/functions' ); echo $html; #_main.tpl # # #<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" # "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> #<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" dir="ltr"> #<head> # <meta http-equiv="content-type" content="text/html; charset=utf-8" /> # <title>[+title+]</title> # #</head> #<body> # <h1>[+title+]</h1> # <p>[+text+]</p> # <a href="[+link+]">[+link+]</a> #</body> #</html> ?>
以上是关于PHP模板函数的主要内容,如果未能解决你的问题,请参考以下文章