I am using PHP Version 5.2.17 and noticing some bizarre behavior in my PHP script while attempting to create and write to a CSV file. The following code results in a fatal error :
PHP Fatal error: Call to undefined function fprintf()...
$file_path = $_SERVER['DOCUMENT_ROOT']."/_static/excel.csv";
$file = fopen($file_path,"w+");
//*/
fwrite($file, chr(0xEF).chr(0xBB).chr(0xBF));
/*/
fprintf($file, chr(0xEF).chr(0xBB).chr(0xBF));
//*/
$query = "SELECT * FROM `my_table`";
$result = mysql_query($query);
while( $row = mysql_fetch_assoc($result) ){
fprintf($file, implode(',',$row).'\n');
}
fclose($file);
Note this error is being thrown only the second time I am calling the fprintf function.
The same behavior can be seen when using fwrite and fputcsv functions (which my original version used). Believe it or not even file_put_contents is found to be undefined here.
As you can clearly see the system seems to forget the existence of the function :P
Has anyone seen this behavior? If so, what measures can be taken to resolve it?
Update :
This issue ssems to have been resolved. However, It is still not clear what was causing this issue.
As hakre noted in the comments, my use of the fprintf method was not correct however this had no effect on the outcome of the code (as is demonstrated by the comment block toggle)
fprintf()is only available in version 5. Which PHP version are using? – Bjoern Feb 8 at 9:12fwrite,fputcsvand evenfile_put_contentsall yield similar fatal errors. – Lix Feb 8 at 9:33