ho scritto questo scriptino...
Codice PHP:
####### replace.inc.php :
$buffer = str_replace("{head.sito_titolo}",$strLang['head.titolo_sito'],$buffer);
$buffer = str_replace("{web.pagina_corrente}",$strLang['pagine.index'],$buffer);
$buffer = str_replace("{cnf.url_sito}",$cnf['path']['web'],$buffer);
########
######## index.php
<?php
function replace_tpl($buffer)
{
// Recupero per la sostituzione
global $strLang;
global $cnf;
// Includo le sostituzioni fisse
require ("./replace.inc.php");
// Rispondo con il buffer pulito
return $buffer;
}
ob_start("replace_tpl");
?>
<html>
<head>
<title>{head.titolo_sito} # {web.pagina_corrente}</title>
</head>
<body>
<a href="{cnf.url_sito}index.php">index</a>
</body>
</html>
<?
ob_end_flush();
?>
########
che ne dite?