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)

link|improve this question

1  
According to the manual, fprintf() is only available in version 5. Which PHP version are using? – Bjoern Feb 8 at 9:12
EXTREMELY valid question :P Don't know how I forgot to include that :P – Lix Feb 8 at 9:13
Check if PHP is on Safe Mode. – Mob Feb 8 at 9:21
@Mob - safe mode is indeed set to off. – Lix Feb 8 at 9:22
Please read my post carefully. fwrite, fputcsv and even file_put_contents all yield similar fatal errors. – Lix Feb 8 at 9:33
show 8 more comments
feedback

1 Answer

try

fprintf($file, implode(',',$row."\n");

instead of ).'\n'

then go with this:

$line = implode(',',$row)."\n";
fprintf($file, $line);
link|improve this answer
Thanks for your input - but as is stated in the documentation, the implode method's second argument must be an array. You suggestion throws its own fatal error : implode(): Invalid arguments passed – Lix Feb 8 at 9:32
@Lix: Yes, right. See my edit. – djot Feb 8 at 9:34
Missing a ). I think his point was to use double quotes to parse your escape code. Still wouldn't change anything. – Leigh Feb 8 at 9:34
@djot - thank you for your input however it did not resolve my problem :) See my update. – Lix Feb 8 at 12:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.