Lines Matching refs:fp
16 $fp = $zip->getStream('foo');18 var_dump($fp);19 if(!$fp) exit("\n");21 while (!feof($fp)) {22 $contents .= fread($fp, 255);25 fclose($fp);30 $fp = fopen('zip://' . __DIR__ . '/test_with_comment.zip#foo', 'rb');31 if (!$fp) {35 while (!feof($fp)) {36 $contents .= fread($fp, 2);39 fclose($fp);