moonbather on 11/19/08
Last Edited at 11/19/08 10:55am
<?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); } }?>
URL: http://drupal.org/node/90713
Report this snippet Tweet
Comment:
You need to login to post a comment.