php - error when trying to write file -
php - error when trying to write file -
i trying write file. maintain getting error though , i'm not sure create of it. there has suggestions on this. much error:
warning: fopen(library/webserver/documents/gasdev/test_files/850_855_csv_tests/855_export/gunb0855.z9000404): failed open stream: no such file or directory in /library/webserver/documents/gasdev/src/controller/containercontroller.php
this function using:
public function savefile($savefile,$content){ $newfile = fopen($savefile, 'w'); fwrite($newfile, $content); fclose($newfile); }//end savefile()
you cant read or write directory doesnt exist. code in reply should run before trying open it
php: fopen create folders
php fopen fwrite
Comments
Post a Comment