Benim projelerde benim program kodundan HTML çıkışını ayırmak istiyorum, bu yüzden çok basit bir veritabanı sınıfı yazdı.
<?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>');
}
}
?>
Ben yardıma ihtiyacım şey display()
yöntemidir. Örneğin ben bu kodu kullanabilirsiniz Say:
$tplObj = new Template();
$tplObj->load('index.php');
$tplObj->replace('{TITLE}', 'Homepage');
$tplObj->display();
Ve index.php
dosyası şudur:
<html>
<head>
<title>{TITLE}</title>
</head>
<body>
<h1>{TITLE}</h1>
<?php
if($something) {
echo '$something is true';
} else {
echo '$something is false';
}
?>
</body>
</html>
Orada PHP kodu çalıştırmak olacaktır, ben sadece merak ediyorum? Yoksa sadece düz metin olarak tarayıcıya gönderilen olurdu? Benim şablon sınıfı eval()
kullanıyordum ama o fonksiyonu nefret ediyorum: P
Teşekkürler.