
17-07-2008, 18:14
|
|
|
|
חבר מתאריך: 14.04.06
הודעות: 331
|
|
הפונקציה file_put_contents זה PHP 5 ומעלה. כנראה שאתה מריץ גרסא ישנה יותר.
זה משהו שיעזור לך שים את זה איפשהו בקוד
קוד PHP:
if(!function_exists('file_put_contents')) { function file_put_contents($filename, $data, $file_append = false) { $fp = fopen($filename, (!$file_append ? 'w+' : 'a+')); if(!$fp) { trigger_error('file_put_contents cannot write in file.', E_USER_ERROR); return; } fputs($fp, $data); fclose($fp); } }
|