Home
last modified time | relevance | path

Searched refs:url (Results 1 – 25 of 156) sorted by path

1234567

/PHP-7.3/
H A D.gitattributes121 /ext/standard/tests/url/rawurldecode_variation_001.phpt -crlf
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 DREADME.TESTING288 this section is used to build the url used in an HTTP request. Valid values
290 SCRIPT_NAME The initial part of the request url
291 PATH_INFO The pathinfo part of a request url
292 FRAGMENT The fragment section of a url (after #)
293 QUERY_STRING The query part of a url (after ?)
H A DUPGRADING155 . Starting with 7.3.23, incoming cookie names are not url-decoded. This was never
/PHP-7.3/Zend/
H A Dheader9 | available through the world-wide-web at the following url: |
/PHP-7.3/ext/curl/
H A Dinterface.c195 static int php_curl_option_url(php_curl *ch, const char *url, const size_t len) /* {{{ */ in php_curl_option_url() argument
204 if (!(uri = php_url_parse_ex(url, len))) { in php_curl_option_url()
205 php_error_docref(NULL, E_WARNING, "Invalid URL '%s'", url); in php_curl_option_url()
219 …if (len > sizeof("file://") - 1 && '/' != url[sizeof("file://") - 1] && !strncmp("file://", url, s… in php_curl_option_url()
223 memmove(_tmp + sizeof("file:///") - 1, url + sizeof("file://") - 1, len - sizeof("file://") + 1); in php_curl_option_url()
229 return php_curl_option_str(ch, CURLOPT_URL, url, len, 0); in php_curl_option_url()
303 ZEND_ARG_INFO(0, url)
2035 zend_string *url = NULL; in PHP_FUNCTION() local
2039 Z_PARAM_STR(url) in PHP_FUNCTION()
2058 if (url) { in PHP_FUNCTION()
[all …]
/PHP-7.3/ext/curl/tests/
H A Dbug48207.phpt22 $url = "$host/get.php?test=1";
28 $url = 'file://'. $tempname;
37 $ch = curl_init($url);
H A Dbug55767.phpt21 $url = "{$host}/get.php?test=getpost&get_param=Hello%20World";
28 curl_setopt($ch, CURLOPT_URL, $url); //set the url we want to use
H A Dbug68089.phpt10 $url = "file:///etc/passwd\0http://google.com";
12 var_dump(curl_setopt($ch, CURLOPT_URL, $url));
H A Dbug68937.phpt14 $url = "{$host}/get.php";
16 $ch = curl_init($url);
H A Dbug68937_2.phpt13 $url = "{$host}/get.php";
15 $ch = curl_init($url);
H A Dbug69316.phpt22 $url = "{$host}/get.php?test=getpost";
28 curl_setopt($ch, CURLOPT_URL, $url);
H A Dbug77946.phpt19 foreach ($urls as $i => $url) {
20 $conn[$i] = curl_init($url);
34 foreach ($urls as $i => $url) {
H A Dbug79033.phpt2 Bug #79033 (Curl timeout error with specific url and post)
H A Dcurl_CURLOPT_READDATA.phpt14 $url = $host . '/get.php?test=post';
22 $ch = curl_init($url);
23 curl_setopt($ch, CURLOPT_URL, $url);
H A Dcurl_basic_001.phpt21 $url = "{$host}/get.php?test=get";
25 curl_setopt($ch, CURLOPT_URL, $url); //set the url we want to use
H A Dcurl_basic_002.phpt22 $url = "{$host}/get.php?test=get";
27 curl_setopt($ch, CURLOPT_URL, $url); //set the url we want to use
H A Dcurl_basic_003.phpt22 $url = "{$host}/get.php?test=getpost&get_param=Hello%20World";
29 curl_setopt($ch, CURLOPT_URL, $url); //set the url we want to use
H A Dcurl_basic_004.phpt22 $url = "{$host}/get.php?test=referer";
28 curl_setopt($ch, CURLOPT_URL, $url); //set the url we want to use
H A Dcurl_basic_005.phpt22 $url = "{$host}/get.php?test=useragent";
28 curl_setopt($ch, CURLOPT_URL, $url); //set the url we want to use
H A Dcurl_basic_006.phpt22 $url = "{$host}/get.php?test=get";
26 curl_setopt($ch, CURLOPT_URL, $url); //set the url we want to use
H A Dcurl_basic_007.phpt2 Test curl_error() & curl_errno() function without url
H A Dcurl_basic_008.phpt16 $url = "http://www.".uniqid().".".uniqid();
18 curl_setopt($ch, CURLOPT_URL, $url);
H A Dcurl_basic_009.phpt10 $url = substr(uniqid(),0,7)."://www.".uniqid().".".uniqid();
12 curl_setopt($ch, CURLOPT_URL, $url);
H A Dcurl_basic_010.phpt16 $url = "http://www.example.org";
19 curl_setopt($ch, CURLOPT_URL, $url);

Completed in 37 milliseconds

1234567