我想在项目中将HTML的输出与我的程序代码分开,所以我写了一个非常简单的数据库类。
<?php
class Template
{
private $template;
function load($filePath)
{
if(!$this->template = file_get_contents($filePath))
$this->error('Error: Failed to open <strong>' . $filePath . '</strong>');
}
function replace($var, $content)
{
$this->template = str_replace("{$var}", $content, $this->template);
}
function display()
{
echo $this->template;
}
function error($errorMessage)
{
die('die() by template class: <strong>' . $errorMessage . '</strong>');
}
}
?>
我需要帮助的是display()
方法。比方说,我使用这段代码:
$tplObj = new Template();
$tplObj->load('index.php');
$tplObj->replace('{TITLE}', 'Homepage');
$tplObj->display();
index.php
文件是这样的:
<html>
<head>
<title>{TITLE}</title>
</head>
<body>
<h1>{TITLE}</h1>
<?php
if($something) {
echo '$something is true';
} else {
echo '$something is false';
}
?>
</body>
</html>
我只是想知道那里的PHP代码是否会运行?或者它只是以明文形式发送到浏览器?我在模板类中使用eval()
,但我讨厌这个函数:P
感谢。
答案 0 :(得分:1)
没有。这将是纯文本。
'echo'输出而不解析PHP代码。
您不需要依赖使用eval。还有其他方法可以使用输出缓冲。