Lines Matching refs:fp
14 $fp = $zip->getStream('foo');16 var_dump($fp);17 if(!$fp) exit("\n");19 while (!feof($fp)) {20 $contents .= fread($fp, 255);23 fclose($fp);28 $fp = fopen('zip://' . __DIR__ . '/test_with_comment.zip#foo', 'rb');29 if (!$fp) {33 while (!feof($fp)) {34 $contents .= fread($fp, 2);37 fclose($fp);