/PHP-5.3/ext/pdo_oci/tests/ |
H A D | pdo_oci_stream_1.phpt | 2 PDO_OCI: stream_get_contents length & offset test 45 echo 'Read '.stream_get_contents($r['data'], 1, 1)."$\n"; // b 46 echo 'Read '.stream_get_contents($r['data'], 2, 1)."$\n"; // cd 47 echo 'Read '.stream_get_contents($r['data'], 2, 0)."$\n"; // ab 51 echo 'Read '.stream_get_contents($r['data'], 1, 20)."$\n"; // u 52 echo 'Read '.stream_get_contents($r['data'], 1, 25)."$\n"; // z 53 echo 'Read '.stream_get_contents($r['data'], 1, 26)."$\n"; // <blank> 54 echo 'Read '.stream_get_contents($r['data'], 1, 0)."$\n"; // a 66 echo 'Read '.strlen(stream_get_contents($r['data'], 0,0))."\n"; // 0 67 echo 'Read '.strlen(stream_get_contents($r['data'], 0,1))."\n"; // 0 [all …]
|
/PHP-5.3/ext/standard/tests/streams/ |
H A D | bug46426.phpt | 2 Bug #46426 (3rd parameter offset of stream_get_contents not works for "0") 10 echo stream_get_contents($tmp, 2, 1); 12 echo stream_get_contents($tmp, -1); 14 echo stream_get_contents($tmp, -1, 0); 16 echo stream_get_contents($tmp, -1, 2); 18 echo stream_get_contents($tmp, 0, 0); 20 echo stream_get_contents($tmp, 1, 0); 22 echo stream_get_contents($tmp, -1);
|
H A D | stream_get_contents_001.phpt | 2 stream_get_contents() - Testing offset out of range 10 echo stream_get_contents($tmp, 2, 5), "--\n"; 11 echo stream_get_contents($tmp, 2), "--\n"; 12 echo stream_get_contents($tmp, 2, 3), "--\n"; 13 echo stream_get_contents($tmp, 2, -1), "--\n";
|
H A D | bug54946.phpt | 2 Bug#54946 stream_get_contents infinite loop 7 $retval = stream_get_contents($stream, 1, 1); 17 $retval = stream_get_contents($stream, 1, 1); 28 $retval = stream_get_contents($stream, 1);
|
H A D | stream_get_contents_002.phpt | 2 stream_get_contents() - Testing on socket with $maxlength 14 var_dump(stream_get_contents($sockets[1], 3));
|
H A D | stream_copy_to_stream_socket.phpt | 19 var_dump(stream_get_contents($tmp)); 24 var_dump(stream_get_contents($tmp));
|
H A D | bug48309.phpt | 16 var_dump(stream_get_contents($tmp)); 24 var_dump(stream_get_contents($tmp));
|
/PHP-5.3/ext/zip/tests/ |
H A D | bug53579.phpt | 2 Bug #53579 (stream_get_contents() segfaults on ziparchive streams) 21 $contents = stream_get_contents($fp); 32 $contents = stream_get_contents($fp);
|
/PHP-5.3/ext/standard/tests/filters/ |
H A D | filter_errors_user.phpt | 58 stream_get_contents($stream); 71 stream_get_contents($stream); 85 stream_get_contents($stream); 99 Warning: stream_get_contents(): Unprocessed filter buckets remaining on input brigade in %s 121 Warning: stream_get_contents(): Unprocessed filter buckets remaining on input brigade in %s 131 Warning: stream_get_contents(): Unprocessed filter buckets remaining on input brigade in %s 135 Warning: stream_get_contents(): Unprocessed filter buckets remaining on input brigade in %s 146 Warning: stream_get_contents(): Unprocessed filter buckets remaining on input brigade in %s 151 Warning: stream_get_contents(): Unprocessed filter buckets remaining on input brigade in %s 161 Warning: stream_get_contents(): Unprocessed filter buckets remaining on input brigade in %s [all …]
|
H A D | filter_errors_convert_base64_decode.phpt | 18 Warning: stream_get_contents(): stream filter (convert.base64-decode): invalid byte sequence in %s
|
H A D | filter_errors.inc | 34 stream_get_contents($stream);
|
H A D | chunked_001.phpt | 24 var_dump(stream_get_contents($fp));
|
/PHP-5.3/tests/run-test/ |
H A D | test010.phpt | 5 var_dump(stream_get_contents(STDIN)); 6 var_dump(stream_get_contents(fopen('php://stdin', 'r')));
|
/PHP-5.3/ext/standard/tests/strings/ |
H A D | vfprintf_error3.phpt | 23 var_dump( stream_get_contents( $fp ) ); 30 var_dump( stream_get_contents( $fp ) );
|
/PHP-5.3/ext/standard/tests/file/ |
H A D | stream_rfc2397_001.phpt | 15 var_dump(stream_get_contents($file));
|
H A D | bug39551.phpt | 19 stream_get_contents($s);
|
/PHP-5.3/ext/phar/tests/files/ |
H A D | nophar.phar.inc | 7 $p['b/c.php'] = '<?php echo "in b\n";$a = fopen("index.php", "r", true);echo stream_get_contents($a…
|
/PHP-5.3/ext/phar/tests/cache_list/files/ |
H A D | nophar.phar.inc | 7 $p['b/c.php'] = '<?php echo "in b\n";$a = fopen("index.php", "r", true);echo stream_get_contents($a…
|
/PHP-5.3/ext/standard/ |
H A D | streamsfuncs.h | 34 PHP_FUNCTION(stream_get_contents);
|
/PHP-5.3/ext/standard/tests/http/ |
H A D | ignore_errors.phpt | 31 var_dump(stream_get_contents($fd)); 35 var_dump(stream_get_contents($output));
|
H A D | bug53198.phpt | 25 var_dump(stream_get_contents($output));
|
/PHP-5.3/ext/mcrypt/tests/ |
H A D | mcrypt_filters.phpt | 30 $data = stream_get_contents($fp);
|
/PHP-5.3/ext/phar/tests/ |
H A D | phar_magic.phpt | 14 $p['b/c.php'] = '<?php echo "in b\n";$a = fopen("a", "r", true);echo stream_get_contents($a);fclose…
|
/PHP-5.3/ext/phar/tests/tar/ |
H A D | phar_magic.phpt | 14 $p['b/c.php'] = '<?php echo "in b\n";$a = fopen("a", "r", true);echo stream_get_contents($a);fclose…
|
/PHP-5.3/sapi/cli/tests/ |
H A D | 022.phpt | 35 echo stream_get_contents($client_socket);
|