i iki PHP dosyaları var:
- template.php
- template.html.php
İlk Şablon için sınıf tanımı. İkinci Ancak PHP yapıları ile gerçek bir HTML tabanlı şablonu, (dolayısıyla. PHP uzantısı) içerir. Ben bu bir melez html / php dosyası çağırır.
Is it possible to create some function in the Template-class (special_include_parse()
) hangi alır: strong>
- $path (melez html / php dosyasına)
- $model (o $ this-> getModel () veya $ modelini ya da her neyse kullanılarak başvurulan böylece hibrid html / php dosyasındaki kod geçirilir; ...)
?
template.php
class Template {
function Parse($model) {
//include('/var/www/template.html.php');
//fopen('/var/www/template.html.php');
$return = special_include_parse('/var/www/template.html.php', $model);
}
}
template.html.php
<html>
<head>
<title><? echo $this->getModel()->getTitle(); ?></title>
</head>
</html>