View Single Post
ישן 23-09-06, 09:01   # 19
RS324
תודה על תרומתך.
 
מיני פרופיל
תאריך הצטרפות: May 2006
הודעות: 3,173

RS324 לא מחובר  

אוקי עכשיו הבנתי אותך.. ומסתבר שצדקתי בהתחלה
תנסה לעשות משהו כזה...

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);

?>