Date: 11/08/07 (PHP Community) Keywords: php, browser, google Are there any known issues with file() causing Fatal errors? A production script died on a scheduled file import this morning, it's crashing on this line: $lines = file($fullfilepath); If I access via a browser the script pops up a "save as" box with scriptname.php as the file to save. The script works fine on similar test files. If I change to $blah = file_get_contents($fullfilepath); The script doesn't die. I looked around on google but keyword "file" turns up everything but what I need.
|