אוקי עכשיו הבנתי אותך.. ומסתבר שצדקתי בהתחלה
תנסה לעשות משהו כזה...
PHP קוד:
<?
function str_tpl($dir,$file,$what,$with)
{
// $what = array(0=>'firstval',1=>'secondval');
//$width = array(0=>'firstreplace',1=>'secondreplace');
$tpl = file_get_contents($dir."/".$file.".tpl");
$tpl = preg_replace("/$what/",$with,$tpl);
return $tpl;
}
$what = array('<*CSS_NUM*>','<*BLOCK_TITLE*>','<*BLOCKS*>');
$with = array('1','כותרת','block in here');
echo str_tpl('style','header',$what,$with);
?>