HoRnominatoR
Lt. Junior Grade
- Registriert
- Dez. 2004
- Beiträge
- 302
kleines bspl (ueberall anwendbar)
Code:
<doctype und so...>
<html>
<head>
<title>{{title}}</title>
<meta encoding und so...>
</head>
<body>
{{content}}
</body>
</html>
PHP:
// name der templatedatei
$template_file = 'index.html';
// templatedatei in string einlesen
$template_html = file_get_contents($template_file);
// template inhalte festlegen
$title = 'hallo!';
// array mit: ersetzen => durch_ersatz
$template_array = array(
'{{title}}' => $title
);
// ersetzen
$template_output = strtr($template_html, $template_array);