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

RS324 לא מחובר  

מצטער על הבלגאן
יש לי את הפתרון בשבילך

ככה :

PHP קוד:
$csstext fetch_css('css.css'); 
תחליף ב :

PHP קוד:
eval('$csstext =("' fetch_css('css.css') . '");'); 
ואתה הפונקציה תמחק ותשים את זאת

PHP קוד:
function fetch_css($file)
{
    if (!
file_exists($file))
    {
        die(
"Cant Find css : $file");
    }
    else {
        
//file exsit  - readit
    
$css addslashes(file_get_contents($filename));
    return 
str_replace(($vars), eval($vars), $css);

        
    }
    


אין מצב שזה לא עובד !!!
  Reply With Quote