Home
last modified time | relevance | path

Searched refs:stream (Results 101 – 125 of 779) sorted by relevance

12345678910>>...32

/PHP-8.1/ext/standard/tests/streams/
H A Dstream_context_tcp_nodelay.phpt2 stream context tcp_nodelay
17 $stream = stream_socket_client(
21 socket_import_stream($stream);
H A Dstream_context_get_params_001.phpt16 var_dump(stream_context_set_params($ctx, array("notification" => array("stream","notification_callb…
26 resource(%d) of type (stream-context)
61 string(6) "stream"
78 string(6) "stream"
102 string(6) "stream"
H A Dstream_context_tcp_nodelay_fopen.phpt2 stream context tcp_nodelay fopen
20 $stream = fopen("http://www.php.net", "r", false, $ctxt);
23 @socket_import_stream($stream);
H A Dbug44818.phpt19 resource(%d) of type (stream)
24 resource(%d) of type (stream)
29 resource(%d) of type (stream)
34 resource(%d) of type (stream)
/PHP-8.1/tests/output/
H A Dstream_isatty_in-out.phpt26 Invalid stream (php://temp): bool(false)
27 Invalid stream (php://input): bool(false)
28 Invalid stream (php://memory): bool(false)
29 File stream: bool(false)
H A Dstream_isatty_out-err.phpt26 Invalid stream (php://temp): bool(false)
27 Invalid stream (php://input): bool(false)
28 Invalid stream (php://memory): bool(false)
29 File stream: bool(false)
H A Dstream_isatty_out.phpt26 Invalid stream (php://temp): bool(false)
27 Invalid stream (php://input): bool(false)
28 Invalid stream (php://memory): bool(false)
29 File stream: bool(false)
H A Dstream_isatty_err.phpt26 Invalid stream (php://temp): bool(false)
27 Invalid stream (php://input): bool(false)
28 Invalid stream (php://memory): bool(false)
29 File stream: bool(false)
H A Dstream_isatty_in-err.phpt26 Invalid stream (php://temp): bool(false)
27 Invalid stream (php://input): bool(false)
28 Invalid stream (php://memory): bool(false)
29 File stream: bool(false)
H A Dstream_isatty_in-out-err.phpt26 Invalid stream (php://temp): bool(false)
27 Invalid stream (php://input): bool(false)
28 Invalid stream (php://memory): bool(false)
29 File stream: bool(false)
H A Dsapi_windows_vt100_support_winko_err.phpt79 Invalid stream (php://temp):
82 Warning: sapi_windows_vt100_support(): not able to analyze the specified stream in %s on line %d
86 Warning: sapi_windows_vt100_support(): not able to analyze the specified stream in %s on line %d
89 Invalid stream (php://input):
92 Warning: sapi_windows_vt100_support(): not able to analyze the specified stream in %s on line %d
96 Warning: sapi_windows_vt100_support(): not able to analyze the specified stream in %s on line %d
99 Invalid stream (php://memory):
102 Warning: sapi_windows_vt100_support(): not able to analyze the specified stream in %s on line %d
106 Warning: sapi_windows_vt100_support(): not able to analyze the specified stream in %s on line %d
109 File stream:
/PHP-8.1/ext/openssl/tests/
H A Dtls_wrapper.phpt2 tls stream wrapper
71 resource(%d) of type (stream)
73 resource(%d) of type (stream)
74 resource(%d) of type (stream)
75 resource(%d) of type (stream)
76 resource(%d) of type (stream)
/PHP-8.1/ext/standard/tests/
H A Dgh10885.phpt20 resource(%d) of type (stream-context) refcount(2)
21 resource(%d) of type (stream-context) refcount(3)
22 resource(%d) of type (stream-context) refcount(2)
/PHP-8.1/ext/sockets/tests/
H A Dsocket_import_stream-2.phpt26 Warning: socket_import_stream(): Cannot represent a stream of type STDIO as a Socket Descriptor in …
28 socket_import_stream(): Argument #1 ($stream) must be of type resource, Socket given
29 resource(%d) of type (stream)
31 socket_import_stream(): supplied resource is not a valid stream resource
/PHP-8.1/ext/zlib/tests/
H A Dgzfile_variation5.phpt25 Warning: gzfile(0): Failed to open stream: No such file or directory in %s on line %d
28 Warning: gzfile(1): Failed to open stream: No such file or directory in %s on line %d
31 Warning: gzfile(12345): Failed to open stream: No such file or directory in %s on line %d
34 Warning: gzfile(-2345): Failed to open stream: No such file or directory in %s on line %d
H A Dreadgzfile_variation5.phpt25 Warning: readgzfile(0): Failed to open stream: No such file or directory in %s on line %d
28 Warning: readgzfile(1): Failed to open stream: No such file or directory in %s on line %d
31 Warning: readgzfile(12345): Failed to open stream: No such file or directory in %s on line %d
34 Warning: readgzfile(-2345): Failed to open stream: No such file or directory in %s on line %d
/PHP-8.1/ext/standard/tests/file/
H A Dstream_rfc2397_006.phpt15 foreach($streams as $stream)
18 var_dump(file_get_contents($stream));
29 Warning: file_get_contents(data:;base64,#Zm9vYmFyIGZvb2Jhcg==): Failed to open stream: rfc2397: una…
32 Warning: file_get_contents(data:;base64,#Zm9vYmFyIGZvb2Jhc=): Failed to open stream: rfc2397: unabl…
H A Dbasename_bug66395_variation2-win32.phpt16 echo basename("a:\\b:\\c:d:hello\\world:some.stream") . "\n";
17 echo basename("a:/b:\\c:d:hello\\world:some.stream:\$DATA") . "\n";
18 echo basename("x:y:z:hello\world:my.stream:\$DATA") . "\n";
32 world:some.stream
33 world:some.stream:$DATA
34 world:my.stream:$DATA
/PHP-8.1/ext/standard/
H A Dfsock.c43 php_stream *stream = NULL; in php_fsockopen_stream() local
85 stream = php_stream_xport_create(hostname, hostname_len, REPORT_ERRORS, in php_fsockopen_stream()
91 if (stream == NULL) { in php_fsockopen_stream()
99 if (stream == NULL) { in php_fsockopen_stream()
125 php_stream_to_zval(stream, return_value); in php_fsockopen_stream()
/PHP-8.1/ext/fileinfo/libmagic/
H A Dmagic.c179 magic_stream(struct magic_set *ms, php_stream *stream) in magic_stream() argument
183 return file_or_stream(ms, NULL, stream); in magic_stream()
187 file_or_stream(struct magic_set *ms, const char *inname, php_stream *stream) in file_or_stream() argument
218 if (inname && !stream) { in file_or_stream()
220 stream = php_stream_open_wrapper((char *)inname, "rb", REPORT_ERRORS, NULL); in file_or_stream()
221 if (!stream) { in file_or_stream()
230 if (php_stream_stat(stream, &ssb) < 0) { in file_or_stream()
242 if ((nbytes = php_stream_read(stream, (char *)buf, ms->bytes_max - nbytes)) < 0) { in file_or_stream()
248 if (file_buffer(ms, stream, &sb, inname, buf, CAST(size_t, nbytes)) == -1) in file_or_stream()
254 if (no_in_stream && stream) { in file_or_stream()
[all …]
/PHP-8.1/ext/soap/
H A Dphp_http.c260 stream = NULL; in http_connect()
264 if (stream) { in http_connect()
274 if (stream) { in http_connect()
311 return stream; in http_connect()
422 stream = NULL; in make_http_soap_request()
500 stream = NULL; in make_http_soap_request()
506 if (stream != NULL && php_stream_eof(stream)) { in make_http_soap_request()
511 stream = NULL; in make_http_soap_request()
515 if (!stream) { in make_http_soap_request()
517 if (stream) { in make_http_soap_request()
[all …]
/PHP-8.1/ext/phar/tests/
H A Dcreate_path_error.phpt68 1:Error: file_put_contents(phar://%s//): Failed to open stream: phar error: file "" in phar "%s" ca…
69 2:Error: file_put_contents(phar://%s/.): Failed to open stream: phar error: file "" in phar "%s" ca…
70 3:Error: file_put_contents(phar://%s/../): Failed to open stream: phar error: file "" in phar "%s" …
71 4:Error: file_put_contents(phar://%s/a/..): Failed to open stream: phar error: file "" in phar "%s"…
76 9:Error: file_put_contents(phar://%s): Failed to open stream: phar error: invalid path "%s" contain…
77 10:Error: file_put_contents(phar://%s): Failed to open stream: phar error: invalid path "%s" contai…
78 11:Error: file_put_contents(phar://%s): Failed to open stream: phar error: invalid path "%s" contai…
79 12:Error: file_put_contents(phar://%s): Failed to open stream: phar error: invalid path "%s" contai…
80 13:Error: file_put_contents(phar://%s): Failed to open stream: phar error: invalid path "%s" contai…
/PHP-8.1/ext/standard/tests/dir/
H A Dopendir_variation4.phpt80 resource(%d) of type (stream)
84 resource(%d) of type (stream)
87 resource(%d) of type (stream)
91 resource(%d) of type (stream)
94 resource(%d) of type (stream)
98 resource(%d) of type (stream)
102 resource(%d) of type (stream)
/PHP-8.1/ext/fileinfo/tests/
H A Dfinfo_open_001.phpt28 Warning: finfo_open(%s123): Failed to open stream: No such file or directory in %s on line %d
30 Warning: finfo_open(%s123): Failed to open stream: No such file or directory in %s on line %d
35 Warning: finfo_open(%s1): Failed to open stream: No such file or directory in %s on line %d
37 Warning: finfo_open(%s1): Failed to open stream: No such file or directory in %s on line %d
42 Warning: finfo_open(%sinexistent): Failed to open stream: No such file or directory in %s on line %d
44 Warning: finfo_open(%sinexistent): Failed to open stream: No such file or directory in %s on line %d
/PHP-8.1/ext/standard/tests/image/
H A Dimage_type_to_mime_type_basic.phpt45 string(24) "application/octet-stream"
47 string(24) "application/octet-stream"
48 string(24) "application/octet-stream"
51 string(24) "application/octet-stream"

Completed in 76 milliseconds

12345678910>>...32