Home
last modified time | relevance | path

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

123456

/PHP-7.4/
H A DCONTRIBUTING.md419 | available through the world-wide-web at the following url: |
H A DNEWS1194 . Fixed bug #79033 (Curl timeout error with specific url and post). (cmb)
2787 . Fixed bug #75996 (incorrect url in header for mt_rand). (tatarbj)
H A DUPGRADING129 . Starting with 7.4.11, incoming cookie names are not url-decoded. This was never
/PHP-7.4/docs/
H A Drelease-process.md55 git remote set-url origin git@git.php.net:pecl/category/ext-name
/PHP-7.4/ext/curl/
H A Dinterface.c137 static int php_curl_option_url(php_curl *ch, const char *url, const size_t len) /* {{{ */ in php_curl_option_url() argument
146 if (!(uri = php_url_parse_ex(url, len))) { in php_curl_option_url()
147 php_error_docref(NULL, E_WARNING, "Invalid URL '%s'", url); in php_curl_option_url()
161 …if (len > sizeof("file://") - 1 && '/' != url[sizeof("file://") - 1] && !strncmp("file://", url, s… in php_curl_option_url()
165 memmove(_tmp + sizeof("file:///") - 1, url + sizeof("file://") - 1, len - sizeof("file://") + 1); in php_curl_option_url()
171 return php_curl_option_str(ch, CURLOPT_URL, url, len, 0); in php_curl_option_url()
245 ZEND_ARG_INFO(0, url)
1998 zend_string *url = NULL; in PHP_FUNCTION() local
2002 Z_PARAM_STR(url) in PHP_FUNCTION()
2021 if (url) { in PHP_FUNCTION()
[all …]
/PHP-7.4/ext/curl/tests/
H A Dbug48207.phpt22 $url = "$host/get.inc?test=1";
28 $url = 'file://'. $tempname;
37 $ch = curl_init($url);
H A Dbug55767.phpt21 $url = "{$host}/get.inc?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.phpt13 $url = "{$host}/get.inc";
15 $ch = curl_init($url);
H A Dbug68937_2.phpt12 $url = "{$host}/get.inc";
14 $ch = curl_init($url);
H A Dbug69316.phpt22 $url = "{$host}/get.inc?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.inc?test=post';
22 $ch = curl_init($url);
23 curl_setopt($ch, CURLOPT_URL, $url);
H A Dcurl_basic_001.phpt21 $url = "{$host}/get.inc?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.inc?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.inc?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.inc?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.inc?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.inc?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);
H A Dcurl_basic_011.phpt21 $url = "{$host}/get.inc?test=cookie";
27 curl_setopt($ch, CURLOPT_URL, $url); //set the url we want to use

Completed in 41 milliseconds

123456