/PHP-7.3/ext/phar/tests/ |
H A D | 022.phpt | 24 echo 'fseek($fp, 1)';var_dump(fseek($fp, 1)); 26 echo 'fseek($fp, 1, SEEK_CUR)';var_dump(fseek($fp, 1, SEEK_CUR)); 28 echo 'fseek($fp, -1, SEEK_CUR)';var_dump(fseek($fp, -1, SEEK_CUR)); 42 echo 'fseek($fp, 6)';var_dump(fseek($fp, 6)); 44 echo 'fseek($fp, 8)';var_dump(fseek($fp, 8)); 46 echo 'fseek($fp, -1)';var_dump(fseek($fp, -1)); 49 fseek($fp, 4); 53 fseek($fp, 4); 57 fseek($fp, 4); 61 fseek($fp, 4); [all …]
|
H A D | phar_stub.phpt | 25 fclose($fp); 33 fclose($fp); 38 fwrite($fp, $file); 39 fclose($fp); 43 $phar->setStub($fp); 44 fclose($fp); 48 fclose($fp); 52 fclose($fp); 59 fclose($fp); 66 fclose($fp); [all …]
|
/PHP-7.3/ext/standard/tests/file/ |
H A D | stream_rfc2397_007.phpt | 18 var_dump(ftell($fp)); 19 var_dump(feof($fp)); 22 var_dump(ftell($fp)); 23 var_dump(feof($fp)); 25 var_dump(fgetc($fp)); 26 var_dump(ftell($fp)); 27 var_dump(feof($fp)); 29 var_dump(fgetc($fp)); 32 var_dump(feof($fp)); 36 var_dump(feof($fp)); [all …]
|
H A D | bug27508.phpt | 6 public $fp; 33 if (!$this->fp) { 55 if (!$fp) { 59 fwrite($fp, "line1\n"); 60 fwrite($fp, "line2\n"); 61 fwrite($fp, "line3\n"); 64 rewind($fp); 65 echo ftell($fp) . "\n"; 67 while ($fp && !feof($fp)) { 68 echo fgets($fp); [all …]
|
H A D | stream_supports_lock.phpt | 7 $fp = fopen(__FILE__, "r"); 8 var_dump($fp); 9 var_dump(stream_supports_lock($fp)); 10 fclose($fp); 13 var_dump($fp); 15 fclose($fp); 17 $fp = fopen("php://memory", "r"); 18 var_dump($fp); 20 fclose($fp); 23 var_dump($fp); [all …]
|
H A D | ftruncate.phpt | 10 $fp = fopen($filename, "r"); 11 var_dump(ftruncate($fp, 10)); 12 fclose($fp); 15 $fp = fopen($filename, "w"); 16 var_dump(ftruncate($fp, 10)); 17 fclose($fp); 22 $fp = fopen($filename, "a"); 24 fclose($fp); 27 $fp = fopen($filename, "a"); 29 fclose($fp); [all …]
|
H A D | fscanf.phpt | 14 $fp = fopen($filename, "rt"); 17 fclose($fp); 19 $fp = fopen($filename, "rt"); 22 fclose($fp); 24 $fp = fopen($filename, "rt"); 28 fclose($fp); 32 $fp = fopen($filename, "rt"); 36 fclose($fp); 40 $fp = fopen($filename, "rt"); 44 fclose($fp); [all …]
|
H A D | flock.phpt | 11 $fp = fopen($file, "w"); 12 fclose($fp); 14 var_dump(flock($fp, LOCK_SH|LOCK_NB)); 16 $fp = fopen($file, "w"); 18 var_dump(flock($fp, LOCK_SH|LOCK_NB)); 19 var_dump(flock($fp, LOCK_UN)); 20 var_dump(flock($fp, LOCK_EX)); 21 var_dump(flock($fp, LOCK_UN)); 26 var_dump(flock($fp, LOCK_UN, $would)); 33 var_dump(flock($fp, -1)); [all …]
|
H A D | fgetcsv_variation23.phpt | 17 $fp = fopen ($filename, "w"); 18 fclose($fp); 19 $fp = fopen ($filename, "r"); 20 if (!$fp) { 24 var_dump( fgetcsv($fp) ); 25 var_dump( ftell($fp) ); 26 var_dump( fgetcsv($fp, 1024) ); 27 var_dump( ftell($fp) ); 29 var_dump( ftell($fp) ); 31 var_dump( ftell($fp) ); [all …]
|
/PHP-7.3/ext/iconv/tests/ |
H A D | iconv_stream_filter_delimiter.phpt | 10 var_dump(bin2hex(fread($fp, 10))); 11 var_dump(bin2hex(fread($fp, 5))); 12 var_dump(bin2hex(fread($fp, 1))); 13 fclose($fp); 17 var_dump(bin2hex(fread($fp, 10))); 18 var_dump(bin2hex(fread($fp, 5))); 19 var_dump(bin2hex(fread($fp, 1))); 20 fclose($fp); 25 var_dump(bin2hex(fread($fp, 5))); 27 fclose($fp); [all …]
|
H A D | iconv_stream_filter.phpt | 10 var_dump(bin2hex(fread($fp, 10))); 11 var_dump(bin2hex(fread($fp, 5))); 12 var_dump(bin2hex(fread($fp, 1))); 13 fclose($fp); 17 var_dump(bin2hex(fread($fp, 10))); 18 var_dump(bin2hex(fread($fp, 5))); 19 var_dump(bin2hex(fread($fp, 1))); 20 fclose($fp); 26 var_dump(bin2hex(fread($fp, 5)) != "69636f6e76"); 27 var_dump(bin2hex(fread($fp, 1)) != "0a"); [all …]
|
/PHP-7.3/ext/zip/examples/ |
H A D | fopen.php | 7 $fp = fopen('zip://' . dirname(__FILE__) . '/test.zip#test', 'r'); variable 8 if (!$fp) { 11 while (!feof($fp)) { 12 $contents .= fread($fp, 2); 16 fclose($fp); 23 $fp = $z->getStream('test'); variable 25 var_dump($fp); 26 if(!$fp) exit("\n"); 27 while (!feof($fp)) { 28 $contents .= fread($fp, 2); [all …]
|
/PHP-7.3/ext/dba/libflatfile/ |
H A D | flatfile.c | 57 php_stream_flush(dba->fp); in flatfile_store() 62 php_stream_flush(dba->fp); in flatfile_store() 69 php_stream_flush(dba->fp); in flatfile_store() 79 php_stream_flush(dba->fp); in flatfile_store() 114 php_stream_rewind(dba->fp); in flatfile_delete() 115 while(!php_stream_eof(dba->fp)) { in flatfile_delete() 125 pos = php_stream_tell(dba->fp); in flatfile_delete() 132 php_stream_putc(dba->fp, 0); in flatfile_delete() 133 php_stream_flush(dba->fp); in flatfile_delete() 166 php_stream_rewind(dba->fp); in flatfile_findkey() [all …]
|
/PHP-7.3/sapi/cli/tests/ |
H A D | bug70470.phpt | 14 if (!$fp) { 18 fwrite($fp, "GET / HTTP/1.1\r\n"); 20 fwrite($fp, "Content"); 21 fflush($fp); 23 fwrite($fp, "-Type: text/html; charset=UTF-8\r\n"); 24 fwrite($fp, "Connection: clo"); 25 fflush($fp); 27 fwrite($fp, "se\r\n\r\n"); 28 while (!feof($fp)) { 29 echo fgets($fp); [all …]
|
H A D | php_cli_server_009.phpt | 19 if (!$fp) { 30 while (!feof($fp)) { 31 echo fgets($fp); 35 fclose($fp); 38 if (!$fp) { 50 while (!feof($fp)) { 51 echo fgets($fp); 55 fclose($fp); 58 if (!$fp) { 71 echo fgets($fp); [all …]
|
H A D | php_cli_server_008.phpt | 15 $fp = fsockopen($host, $port, $errno, $errstr, 0.5); 16 if (!$fp) { 20 if(fwrite($fp, <<<HEADER 27 while (!feof($fp)) { 28 echo fgets($fp); 32 fclose($fp); 35 if (!$fp) { 40 if(fwrite($fp, <<<HEADER 47 while (!feof($fp)) { 48 echo fgets($fp); [all …]
|
/PHP-7.3/ext/bz2/tests/ |
H A D | 002.phpt | 11 var_dump(bzopen($fp, "w")); 14 var_dump(bzopen($fp, "r")); 18 var_dump(bzopen($fp, "w")); 22 var_dump(bzopen($fp, "r")); 25 var_dump(bzopen($fp, "r")); 28 var_dump(bzopen($fp, "w")); 31 var_dump(bzopen($fp, "r")); 34 var_dump(bzopen($fp, "w")); 37 var_dump(bzopen($fp, "w")); 40 var_dump(bzopen($fp, "r")); [all …]
|
/PHP-7.3/ext/standard/ |
H A D | iptc.c | 103 c = getc(fp); in php_iptc_get1() 158 c = php_iptc_get1(fp, spool, spoolbuf); in php_iptc_next_marker() 169 c = php_iptc_get1(fp, 0, 0); in php_iptc_next_marker() 190 FILE *fp; in PHP_FUNCTION() local 214 if ((fp = VCWD_FOPEN(jpeg_file, "rb")) == 0) { in PHP_FUNCTION() 220 zend_fstat(fileno(fp), &sb); in PHP_FUNCTION() 228 fclose(fp); in PHP_FUNCTION() 236 fclose(fp); in PHP_FUNCTION() 255 php_iptc_skip_variable(fp, 0, 0); in PHP_FUNCTION() 256 fgetc(fp); /* skip already copied 0xFF byte */ in PHP_FUNCTION() [all …]
|
/PHP-7.3/ext/zip/tests/ |
H A D | oo_stream.phpt | 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://' . dirname(__FILE__) . '/test_with_comment.zip#foo', 'rb'); 31 if (!$fp) { 35 while (!feof($fp)) { 36 $contents .= fread($fp, 2); [all …]
|
/PHP-7.3/ext/standard/tests/strings/ |
H A D | vfprintf_basic3.phpt | 31 vfprintf($fp, $format1,$arg1); 32 fprintf($fp, "\n"); 34 vfprintf($fp,$format11,$arg1); 35 fprintf($fp, "\n"); 37 vfprintf($fp,$format2,$arg2); 38 fprintf($fp, "\n"); 41 fprintf($fp, "\n"); 43 vfprintf($fp,$format3,$arg3); 44 fprintf($fp, "\n"); 47 fprintf($fp, "\n"); [all …]
|
H A D | vfprintf_basic9.phpt | 31 vfprintf($fp, $format1, $arg1); 32 fprintf($fp, "\n"); 33 vfprintf($fp, $format11, $arg1); 34 fprintf($fp, "\n"); 36 vfprintf($fp, $format2, $arg2); 37 fprintf($fp, "\n"); 39 fprintf($fp, "\n"); 41 vfprintf($fp, $format3, $arg3); 42 fprintf($fp, "\n"); 44 fprintf($fp, "\n"); [all …]
|
H A D | vfprintf_basic.phpt | 15 function writeAndDump($fp, $format, $args) 17 ftruncate( $fp, 0 ); 18 $length = vfprintf( $fp, $format, $args ); 19 rewind( $fp ); 20 $content = stream_get_contents( $fp ); 29 $fp = fopen( $file, "a+" ); 34 writeAndDump( $fp, "%d digit", array( '54' ) ); 35 writeAndDump( $fp, "%b %b", array( true, false ) ); 36 writeAndDump( $fp, "%c %c %c", array( 65, 66, 67 ) ); 38 writeAndDump( $fp, "%02d", array( 50 ) ); [all …]
|
/PHP-7.3/ext/zlib/tests/ |
H A D | zlib_filter_inflate2.phpt | 12 $fp = fopen(dirname(__FILE__) . '/test.txt.gz', 'r'); 13 stream_filter_append($fp, 'zlib.inflate', STREAM_FILTER_READ); 14 echo fread($fp, 2000); 15 fclose($fp); 17 $fp = fopen(dirname(__FILE__) . '/test.txt.gz', 'r'); 19 $fp = fopen(dirname(__FILE__) . '/test.txt.gz', 'r'); 22 echo fread($fp, 2000); 23 fclose($fp); 25 $fp = fopen(dirname(__FILE__) . '/test.txt.gz', 'r'); 28 echo fread($fp, 2000); [all …]
|
/PHP-7.3/ext/standard/tests/filters/ |
H A D | strip_tags_filter.phpt | 5 $fp = fopen('php://output', 'w'); 6 stream_filter_append($fp, 'string.strip_tags'); 7 fwrite($fp, "test <b>bold</b> <i>italic</i> test\n"); 8 fclose($fp); 10 $fp = fopen('php://output', 'w'); 11 stream_filter_append($fp, 'string.strip_tags', STREAM_FILTER_WRITE, "<b>"); 12 fwrite($fp, "test <b>bold</b> <i>italic</i> test\n"); 13 fclose($fp); 15 $fp = fopen('php://output', 'w'); 17 fwrite($fp, "test <b>bold</b> <i>italic</i> test\n"); [all …]
|
/PHP-7.3/ext/phar/ |
H A D | tar.c | 626 myphar->fp = fp; in phar_parse_tarfile() 734 if (fp->error) { in phar_tar_writeheaders_int() 744 if (fp->error) { in phar_tar_writeheaders_int() 758 if (fp->error) { in phar_tar_writeheaders_int() 765 if (fp->error) { in phar_tar_writeheaders_int() 776 if (fp->error) { in phar_tar_writeheaders_int() 789 if (fp->error) { in phar_tar_writeheaders_int() 799 if (fp->error) { in phar_tar_writeheaders_int() 846 if (entry->fp_type == PHAR_MOD && entry->fp != entry->phar->fp && entry->fp != entry->phar->ufp) { in phar_tar_writeheaders_int() 978 entry.fp = NULL; in phar_tar_flush() [all …]
|