Home
last modified time | relevance | path

Searched refs:url (Results 1 – 25 of 156) sorted by last modified time

1234567

/PHP-7.3/
H A DNEWS540 . Fixed bug #79033 (Curl timeout error with specific url and post). (cmb)
1703 . Fixed bug #75996 (incorrect url in header for mt_rand). (tatarbj)
2116 . Fixed bug #75996 (incorrect url in header for mt_rand). (tatarbj)
H A Drun-tests.php2700 $url = str_replace($temp_target, $temp_urlbase, $temp_filenames['file']);
2701 $tested = "<a href='$url'>$tested</a>";
2710 $url = str_replace($temp_target, $temp_urlbase, $temp_filenames['skip']);
2711 $extra = "<a href='$url'>$extra</a>";
2718 $url = str_replace($temp_target, $temp_urlbase, $temp_filenames['diff']);
2719 $diff = "<a href='$url'>diff</a>";
2725 $url = str_replace($temp_target, $temp_urlbase, $temp_filenames['mem']);
2726 $mem = "<a href='$url'>leaks</a>";
H A DUPGRADING155 . Starting with 7.3.23, incoming cookie names are not url-decoded. This was never
/PHP-7.3/ext/filter/tests/
H A Dbug81122.phpt14 foreach ($urls as $url) {
15 var_dump(filter_var($url, FILTER_VALIDATE_URL));
H A Dbug77423.phpt9 foreach ($urls as $url) {
10 var_dump(filter_var($url, FILTER_VALIDATE_URL));
/PHP-7.3/ext/filter/
H A Dlogical_filters.c553 php_url *url; in php_filter_validate_url() local
570 if (url == NULL) { in php_filter_validate_url()
590 php_url_free(url); in php_filter_validate_url()
596 php_url_free(url); in php_filter_validate_url()
602 url->scheme == NULL || in php_filter_validate_url()
604 …(url->host == NULL && (strcmp(ZSTR_VAL(url->scheme), "mailto") && strcmp(ZSTR_VAL(url->scheme), "n… in php_filter_validate_url()
608 php_url_free(url); in php_filter_validate_url()
612 if (url->user != NULL && !is_userinfo_valid(url->user) in php_filter_validate_url()
613 || url->pass != NULL && !is_userinfo_valid(url->pass) in php_filter_validate_url()
615 php_url_free(url); in php_filter_validate_url()
[all …]
/PHP-7.3/ext/standard/
H A Durl.c680 char *url; local
690 Z_PARAM_PATH(url, url_len)
698 …if (!(stream = php_stream_open_wrapper_ex(url, "r", REPORT_ERRORS | STREAM_USE_URL | STREAM_ONLY_G…
H A Dconfig.w3233 string.c scanf.c syslog.c type.c uniqid.c url.c var.c \
H A Dconfig.m4490 soundex.c string.c scanf.c syslog.c type.c uniqid.c url.c \
/PHP-7.3/ext/standard/tests/strings/
H A Durl_t.phpt77 foreach ($sample_urls as $url) {
78 echo "\n--> $url: ";
79 var_dump(@parse_url($url));
82 …$url = 'http://secret:hideout@www.php.net:80/index.php?test=1&test2=char&test3=mixesCI#some_page_r…
84 var_dump(parse_url($url, $v));
/PHP-7.3/ext/standard/tests/url/
H A Dparse_url_basic_001.phpt5 /* Prototype : proto mixed parse_url(string url, [int url_component])
7 * Source code: ext/standard/url.c
16 foreach ($urls as $url) {
17 echo "\n--> $url: ";
18 var_dump(parse_url($url));
H A Dparse_url_basic_003.phpt5 /* Prototype : proto mixed parse_url(string url, [int url_component])
7 * Source code: ext/standard/url.c
16 foreach ($urls as $url) {
17 echo "--> $url : ";
18 var_dump(parse_url($url, PHP_URL_HOST));
H A Dparse_url_basic_005.phpt5 /* Prototype : proto mixed parse_url(string url, [int url_component])
7 * Source code: ext/standard/url.c
16 foreach ($urls as $url) {
17 echo "--> $url : ";
18 var_dump(parse_url($url, PHP_URL_USER));
H A Dparse_url_unterminated.phpt16 foreach ($urls as $url) {
17 echo "\n--> $url: ";
18 $str = zend_create_unterminated_string($url);
H A Dparse_url_basic_004.phpt5 /* Prototype : proto mixed parse_url(string url, [int url_component])
7 * Source code: ext/standard/url.c
16 foreach ($urls as $url) {
17 echo "--> $url : ";
18 var_dump(parse_url($url, PHP_URL_PORT));
H A Dparse_url_basic_002.phpt5 /* Prototype : proto mixed parse_url(string url, [int url_component])
7 * Source code: ext/standard/url.c
16 foreach ($urls as $url) {
17 echo "--> $url : ";
18 var_dump(parse_url($url, PHP_URL_SCHEME));
H A Dparse_url_basic_006.phpt5 /* Prototype : proto mixed parse_url(string url, [int url_component])
7 * Source code: ext/standard/url.c
16 foreach ($urls as $url) {
17 echo "--> $url : ";
18 var_dump(parse_url($url, PHP_URL_PASS));
H A Dparse_url_basic_007.phpt5 /* Prototype : proto mixed parse_url(string url, [int url_component])
7 * Source code: ext/standard/url.c
16 foreach ($urls as $url) {
17 echo "--> $url : ";
18 var_dump(parse_url($url, PHP_URL_PATH));
H A Dparse_url_basic_008.phpt5 /* Prototype : proto mixed parse_url(string url, [int url_component])
7 * Source code: ext/standard/url.c
16 foreach ($urls as $url) {
17 echo "--> $url : ";
18 var_dump(parse_url($url, PHP_URL_QUERY));
H A Dparse_url_basic_009.phpt5 /* Prototype : proto mixed parse_url(string url, [int url_component])
7 * Source code: ext/standard/url.c
16 foreach ($urls as $url) {
17 echo "--> $url : ";
18 var_dump(parse_url($url, PHP_URL_FRAGMENT));
/PHP-7.3/ext/dom/
H A Ddocument.c635 char *url; in dom_document_document_uri_read() local
642 url = (char *) docp->URL; in dom_document_document_uri_read()
643 if (url != NULL) { in dom_document_document_uri_read()
644 ZVAL_STRING(retval, url); in dom_document_document_uri_read()
/PHP-7.3/main/streams/
H A Dplain_wrapper.c1123 url += sizeof("file://") - 1; in php_plain_files_url_stater()
1141 return VCWD_STAT(url, &ssb->sb); in php_plain_files_url_stater()
1149 url += sizeof("file://") - 1; in php_plain_files_unlink()
1156 ret = VCWD_UNLINK(url); in php_plain_files_unlink()
1359 url += sizeof("file://") - 1; in php_plain_files_rmdir()
1367 if (!php_win32_check_trailing_space(url, strlen(url))) { in php_plain_files_rmdir()
1373 if (VCWD_RMDIR(url) < 0) { in php_plain_files_rmdir()
1395 if (!php_win32_check_trailing_space(url, strlen(url))) { in php_plain_files_metadata()
1402 url += sizeof("file://") - 1; in php_plain_files_metadata()
1421 ret = VCWD_UTIME(url, newtime); in php_plain_files_metadata()
[all …]
H A Duserspace.c48 static int user_wrapper_unlink(php_stream_wrapper *wrapper, const char *url, int options, php_strea…
51 static int user_wrapper_rmdir(php_stream_wrapper *wrapper, const char *url, int options, php_stream…
1110 ZVAL_STRING(&args[0], url); in user_wrapper_unlink()
1183 static int user_wrapper_mkdir(php_stream_wrapper *wrapper, const char *url, int mode, in user_wrapper_mkdir() argument
1200 ZVAL_STRING(&args[0], url); in user_wrapper_mkdir()
1231 static int user_wrapper_rmdir(php_stream_wrapper *wrapper, const char *url, in user_wrapper_rmdir() argument
1248 ZVAL_STRING(&args[0], url); in user_wrapper_rmdir()
1277 static int user_wrapper_metadata(php_stream_wrapper *wrapper, const char *url, int option, in user_wrapper_metadata() argument
1319 ZVAL_STRING(&args[0], url); in user_wrapper_metadata()
1350 static int user_wrapper_stat_url(php_stream_wrapper *wrapper, const char *url, int flags, in user_wrapper_stat_url() argument
[all …]
/PHP-7.3/ext/curl/tests/
H A Dcurl_basic_009.phpt10 $url = substr(uniqid(),0,7)."://www.".uniqid().".".uniqid();
12 curl_setopt($ch, CURLOPT_URL, $url);
/PHP-7.3/ext/ldap/
H A Dldap.c1051 char *url = host; in PHP_FUNCTION() local
1052 if (url && !ldap_is_ldap_url(url)) { in PHP_FUNCTION()
1061 url = emalloc(urllen); in PHP_FUNCTION()
1062 snprintf( url, urllen, "ldap://%s:" ZEND_LONG_FMT, host, port ); in PHP_FUNCTION()
1068 rc = ldap_initialize(&ldap, url); in PHP_FUNCTION()
1080 if (url != host) { in PHP_FUNCTION()
1081 efree(url); in PHP_FUNCTION()
3786 int _ldap_rebind_proc(LDAP *ldap, const char *url, ber_tag_t req, ber_int_t msgid, void *params) in _ldap_rebind_proc() argument
3804 ZVAL_STRING(&cb_args[1], url); in _ldap_rebind_proc()

Completed in 94 milliseconds

1234567