Home
last modified time | relevance | path

Searched refs:resource (Results 226 – 250 of 603) sorted by path

12345678910>>...25

/php-src/ext/sqlite3/tests/
H A Dsqlite3_09_blob_bound_param.phpt46 resource(%d) of type (stream)
H A Dsqlite3_30_blobopen.phpt57 resource(%d) of type (stream)
67 resource(%d) of type (stream)
H A Dsqlite3_blob_bind_resource.phpt2 SQLite3::execute() with a resource bound for blob param
/php-src/ext/standard/
H A Dftp_fopen_wrapper.c137 if (resource == NULL || resource->path == NULL) { in php_ftp_fopen_connect()
144 …use_ssl = resource->scheme && (ZSTR_LEN(resource->scheme) > 3) && ZSTR_VAL(resource->scheme)[3] ==… in php_ftp_fopen_connect()
148 resource->port = 21; in php_ftp_fopen_connect()
241 ZSTR_LEN(resource->user) = php_raw_url_decode(ZSTR_VAL(resource->user), ZSTR_LEN(resource->user)); in php_ftp_fopen_connect()
258 … ZSTR_LEN(resource->pass) = php_raw_url_decode(ZSTR_VAL(resource->pass), ZSTR_LEN(resource->pass)); in php_ftp_fopen_connect()
586 if (resource) { in php_stream_url_wrap_ftp()
758 if (resource) { in php_stream_ftp_opendir()
884 if (resource) { in php_stream_ftp_url_stat()
933 if (resource) { in php_stream_ftp_unlink()
1103 if (resource) { in php_stream_ftp_mkdir()
[all …]
H A Dhttp_fopen_wrapper.c124 php_url *resource = NULL; in php_stream_url_wrap_http_ex() local
159 if (resource == NULL) { in php_stream_url_wrap_http_ex()
190 resource->port = 443; in php_stream_url_wrap_http_ex()
192 resource->port = 80; in php_stream_url_wrap_http_ex()
398 if (resource->path && ZSTR_LEN(resource->path)) { in php_stream_url_wrap_http_ex()
527 php_url_decode(ZSTR_VAL(resource->user), ZSTR_LEN(resource->user)); in php_stream_url_wrap_http_ex()
533 if (resource->pass) { in php_stream_url_wrap_http_ex()
534 php_url_decode(ZSTR_VAL(resource->pass), ZSTR_LEN(resource->pass)); in php_stream_url_wrap_http_ex()
561 if ((use_ssl && resource->port != 443 && resource->port != 0) || in php_stream_url_wrap_http_ex()
562 (!use_ssl && resource->port != 80 && resource->port != 0)) { in php_stream_url_wrap_http_ex()
[all …]
H A Dproc_open.c1047 static zend_result set_proc_descriptor_from_resource(zval *resource, descriptorspec_item *desc, int… in set_proc_descriptor_from_resource() argument
1050 php_stream *stream = (php_stream*)zend_fetch_resource(Z_RES_P(resource), "stream", in set_proc_descriptor_from_resource()
/php-src/ext/standard/tests/array/
H A Darray_column_basic.phpt190 resource(%d) of type (stream)
209 resource(%d) of type (stream)
H A Darray_combine_variation4.phpt16 // get a resource variable
50 // array with object, unset variable and resource variable
51 /*10*/ array(@$unset_var => "hello", $fp => 'resource'),
55 $fp => 'resource', 133 => "int",
73 // close the file resource used
141 ["resource"]=>
142 string(8) "resource"
150 ["resource"]=>
151 string(8) "resource"
H A Darray_combine_variation5.phpt17 // get a resource variable
53 // array with object, unset variable and resource variable
54 /*10*/ array(11 => new classA(), "unset" => @$unset_var, "resource" => $fp),
58 'resource' => $fp, "int" => 133, "float" => 444.432,
71 // close the file resource used
157 resource(%d) of type (stream)
169 resource(%d) of type (stream)
H A Darray_diff_assoc_variation1.phpt30 // get a resource variable
81 // resource variable
178 array_diff_assoc(): Argument #1 ($array) must be of type array, resource given
H A Darray_diff_assoc_variation2.phpt30 // get a resource variable
81 // resource variable
178 array_diff_assoc(): Argument #2 must be of type array, resource given
H A Darray_diff_key_variation1.phpt15 //resource variable
81 // resource data
82 'resource' => $fp,
205 --resource--
206 array_diff_key(): Argument #1 ($array) must be of type array, resource given
207 array_diff_key(): Argument #1 ($array) must be of type array, resource given
H A Darray_diff_key_variation2.phpt15 //resource variable
81 // resource data
82 'resource' => $fp,
206 --resource--
207 array_diff_key(): Argument #2 must be of type array, resource given
208 array_diff_key(): Argument #2 must be of type array, resource given
H A Darray_diff_uassoc_variation1.phpt22 //resource variable
92 // resource data
93 'resource' => $fp,
187 --resource--
188 array_diff_uassoc(): Argument #1 ($array) must be of type array, resource given
H A Darray_diff_uassoc_variation2.phpt22 //resource variable
92 // resource data
93 'resource' => $fp,
187 --resource--
188 array_diff_uassoc(): Argument #2 must be of type array, resource given
H A Darray_diff_ukey_variation1.phpt23 //resource variable
89 // resource data
90 'resource' => $fp,
213 --resource--
214 array_diff_ukey(): Argument #1 ($array) must be of type array, resource given
215 array_diff_ukey(): Argument #1 ($array) must be of type array, resource given
H A Darray_diff_ukey_variation2.phpt25 //resource variable
91 // resource data
92 'resource' => $fp,
217 --resource--
218 array_diff_ukey(): Argument #2 must be of type array, resource given
219 array_diff_ukey(): Argument #2 must be of type array, resource given
H A Darray_diff_variation1.phpt30 // get a resource variable
81 // resource variable
153 -- Iteration 26 --array_diff(): Argument #1 ($array) must be of type array, resource given
H A Darray_diff_variation2.phpt30 // get a resource variable
81 // resource variable
152 -- Iteration 26 --array_diff(): Argument #2 must be of type array, resource given
H A Darray_diff_variation8.phpt17 // get a resource variable
48 // array with object, unset variable and resource variable
49 /*8*/ array(11 => new classA(), "unset" => @$unset_var, "resource" => $fp, new classA(), $fp),
193 ["resource"]=>
194 resource(%d) of type (stream)
199 resource(%d) of type (stream)
H A Darray_fill_keys_variation3.phpt24 resource(%d) of type (stream)
26 resource(%d) of type (stream)
H A Darray_fill_keys_variation4.phpt35 echo "\n-- Testing array_fill_keys() function with resource --\n";
72 -- Testing array_fill_keys() function with resource --
75 resource(%d) of type (stream)
H A Darray_flip_variation4.phpt21 // resource data
46 // resource value
52 // closing resource
H A Darray_intersect_assoc_variation1.phpt36 // get a resource variable
83 // resource variable
108 // close the file resource used
185 -- Iteration 24 --array_intersect_assoc(): Argument #1 ($array) must be of type array, resource giv…
186 array_intersect_assoc(): Argument #1 ($array) must be of type array, resource given
H A Darray_intersect_assoc_variation2.phpt36 // get a resource variable
83 // resource variable
109 // close the file resource used
186 -- Iteration 24 --array_intersect_assoc(): Argument #2 must be of type array, resource given
187 array_intersect_assoc(): Argument #2 must be of type array, resource given

Completed in 40 milliseconds

12345678910>>...25