Search
You can find the results of your search below.
Fulltext results:
- fgets @snippets:php
- <file php> $filename = 'whatever'; $fh = @fopen($filename, 'r'); if ( ! $fh ) { throw new Except... Failed to open ${filename}"); } while ( ( $text = fgets($fh) ) !== false ) { echo $text; } </file>