|
php file put contentsfile_put_contents() is in php nowadays, but if you're on an old server you may need your own.
// Replacement for file_put_contents if it doesn't exist
if(!function_exists('file_put_contents')){
function file_put_contents($file, $data){
$fp = fopen($file, 'w');
fwrite($fp, $data);
fclose($fp);
}
}
|
Chinese proverb
Rén suàn bù rú tian suàn Man´s schemes are inferior to those made by heaven |