Home
last modified time | relevance | path

Searched refs:scheme (Results 1 – 25 of 54) sorted by relevance

123

/PHP-5.3/ext/standard/tests/url/
H A Dparse_url_basic_001.phpt31 ["scheme"]=>
38 ["scheme"]=>
71 ["scheme"]=>
78 ["scheme"]=>
97 ["scheme"]=>
104 ["scheme"]=>
120 ["scheme"]=>
129 ["scheme"]=>
140 ["scheme"]=>
163 ["scheme"]=>
[all …]
H A Dbug54180.phpt12 ["scheme"]=>
24 ["scheme"]=>
H A Dparse_url_error_002.phpt25 ["scheme"]=>
/PHP-5.3/ext/standard/tests/strings/
H A Durl_t.phpt71 'scheme:',
96 ["scheme"]=>
102 ["scheme"]=>
130 ["scheme"]=>
136 ["scheme"]=>
152 ["scheme"]=>
158 ["scheme"]=>
172 ["scheme"]=>
180 ["scheme"]=>
190 ["scheme"]=>
[all …]
/PHP-5.3/ext/standard/
H A Durl.c44 if (theurl->scheme) in php_url_free()
45 efree(theurl->scheme); in php_url_free()
145 ret->scheme = estrndup(s, (e-s)); in php_url_parse_ex()
152 ret->scheme = estrndup(s, (e-s)); in php_url_parse_ex()
196 STR_FREE(ret->scheme); in php_url_parse_ex()
201 STR_FREE(ret->scheme); in php_url_parse_ex()
273 STR_FREE(ret->scheme); in php_url_parse_ex()
286 STR_FREE(ret->scheme); in php_url_parse_ex()
301 STR_FREE(ret->scheme); in php_url_parse_ex()
391 if (resource->scheme != NULL) RETVAL_STRING(resource->scheme, 1); in PHP_FUNCTION()
[all …]
H A Durl.h24 char *scheme; member
H A Dhttp_fopen_wrapper.c129 …if (strncasecmp(resource->scheme, "http", sizeof("http")) && strncasecmp(resource->scheme, "https"… in php_stream_url_wrap_http_ex()
153 use_ssl = resource->scheme && (strlen(resource->scheme) > 4) && resource->scheme[4] == 's'; in php_stream_url_wrap_http_ex()
832 …snprintf(new_path, sizeof(new_path) - 1, "%s://%s:%d%s", resource->scheme, resource->host, resourc… in php_stream_url_wrap_http_ex()
834 … snprintf(new_path, sizeof(new_path) - 1, "%s://%s%s", resource->scheme, resource->host, loc_path); in php_stream_url_wrap_http_ex()
/PHP-5.3/ext/iconv/tests/
H A Dbug48289.phpt2 Bug #48289 (iconv_mime_encode() quoted-printable scheme is broken)
9 'scheme' => 'Q',
/PHP-5.3/ext/zlib/tests/
H A Dzlib_scheme_fopen_variation1.phpt2 Test compress.zlib:// scheme with the fopen on a file scheme
H A Dzlib_scheme_unlink_basic.phpt2 Test compress.zlib:// scheme with the unlink function
H A Dzlib_scheme_rename_basic.phpt2 Test compress.zlib:// scheme with the unlink function
H A Dzlib_scheme_file_put_contents_basic.phpt2 Test compress.zlib:// scheme with the file_get_contents
H A Dzlib_scheme_file_read_file_basic.phpt2 Test compress.zlib:// scheme with the file_get_contents
H A Dzlib_scheme_stat_basic.phpt2 Test compress.zlib:// scheme with the unlink function
H A Dzlib_scheme_dir_basic.phpt2 Test compress.zlib:// scheme with the directory functions
H A Dzlib_scheme_file_get_contents_basic.phpt2 Test compress.zlib:// scheme with the file_get_contents
H A Dzlib_scheme_fopen_basic.phpt2 Test compress.zlib:// scheme with the fopen
H A Dzlib_scheme_file_basic.phpt2 Test compress.zlib:// scheme with the file
H A Dzlib_scheme_copy_basic.phpt2 Test compress.zlib:// scheme with the copy function: compressed to compressed
H A Dzlib_scheme_copy_variation1.phpt2 Test compress.zlib:// scheme with the copy function: compressed to uncompressed
H A Dzlib_scheme_stat_basic2.phpt2 Test compress.zlib:// scheme with the unlink function
/PHP-5.3/ext/filter/
H A Dlogical_filters.c458 …if (url->scheme != NULL && (!strcasecmp(url->scheme, "http") || !strcasecmp(url->scheme, "https"))… in php_filter_validate_url()
486 url->scheme == NULL || in php_filter_validate_url()
488 …(url->host == NULL && (strcmp(url->scheme, "mailto") && strcmp(url->scheme, "news") && strcmp(url-… in php_filter_validate_url()
/PHP-5.3/ext/soap/
H A Dphp_http.c389 if (phpurl->scheme != NULL && strcmp(phpurl->scheme, "https") == 0) { in make_http_soap_request()
391 } else if (phpurl->scheme == NULL || strcmp(phpurl->scheme, "http") != 0) { in make_http_soap_request()
420 (((use_ssl && orig->scheme != NULL && strcmp(orig->scheme, "https") == 0) || in make_http_soap_request()
421 (!use_ssl && orig->scheme == NULL) || in make_http_soap_request()
422 (!use_ssl && strcmp(orig->scheme, "https") != 0)) && in make_http_soap_request()
480 smart_str_appends(&soap_headers, phpurl->scheme); in make_http_soap_request()
1027 if (new_url->scheme == NULL && new_url->path != NULL) { in make_http_soap_request()
1028 new_url->scheme = phpurl->scheme ? estrdup(phpurl->scheme) : NULL; in make_http_soap_request()
1122 if (phpurl->scheme) phpurl->scheme = estrdup(phpurl->scheme); in make_http_soap_request()
/PHP-5.3/ext/phar/
H A Dstream.c86 resource->scheme = estrndup("phar", 4); in phar_parse_url()
93 fprintf(stderr, "Scheme: %s\n", resource->scheme); in phar_parse_url()
175 if (!resource->scheme || !resource->host || !resource->path) { in phar_wrapper_open_url()
181 if (strcasecmp("phar", resource->scheme)) { in phar_wrapper_open_url()
581 if (!resource->scheme || !resource->host || !resource->path) { in phar_wrapper_stat()
586 if (strcasecmp("phar", resource->scheme)) { in phar_wrapper_stat()
704 if (!resource->scheme || !resource->host || !resource->path) { in phar_wrapper_unlink()
710 if (strcasecmp("phar", resource->scheme)) { in phar_wrapper_unlink()
825 if (!resource_to->scheme || !resource_to->host || !resource_to->path) { in phar_wrapper_rename()
832 if (strcasecmp("phar", resource_from->scheme)) { in phar_wrapper_rename()
[all …]
H A Ddirstream.c340 if (!resource->scheme || !resource->host || !resource->path) { in phar_wrapper_open_dir()
351 if (strcasecmp("phar", resource->scheme)) { in phar_wrapper_open_dir()
467 if (!resource->scheme || !resource->host || !resource->path) { in phar_wrapper_mkdir()
473 if (strcasecmp("phar", resource->scheme)) { in phar_wrapper_mkdir()
604 if (!resource->scheme || !resource->host || !resource->path) { in phar_wrapper_rmdir()
610 if (strcasecmp("phar", resource->scheme)) { in phar_wrapper_rmdir()

Completed in 52 milliseconds

123