Jump to content

fgetcsv() expects parameter 1 to be resource, boolean given


threaders

Recommended Posts

Hi,

 

Been puzzling over this one. I get a warning in the error_log that fills up my hosting space. It is:

 

PHP Warning:  fgetcsv() expects parameter 1 to be resource, boolean given in

 

As far as I can work out from php.net, the syntax is correct. The code does work, but put this warning in the error_log. Any ideas how to correct the code?

 

Thanks,

Andy

 

php file is located in www root, csv file is located in data subfolder.

 

<?php
$filname = "data/pictures-pres08a.csv";
$handle = fopen($filname, "r");
while (($data = fgetcsv($handle, 1000, ",")) !== FALSE) {
for ($c=0; $c < $num; $c++) {
echo $data[$c];
}
}
fclose($handle);
?>

Link to comment
Share on other sites

Mchl, just what I was thinking.

 

You could tidy up the code a little by doing something like this:

if ($handle = fopen($filname, "r")) {

 

That way you can add an else in later on to display an error message if the CSV file couldn't be opened.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.