Home
last modified time | relevance | path

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

1234567

/php-src/.github/ISSUE_TEMPLATE/
H A Dconfig.yml4 url: https://github.com/php/doc-en/issues
/php-src/.github/workflows/
H A Dpush.yml39 group: ${{ github.workflow }}-${{ github.event.pull_request.url || github.run_id }}
/php-src/
H A DCONTRIBUTING.md443 | available through the world-wide-web at the following url: |
/php-src/benchmark/
H A Dshared.php62 function cloneRepo(string $path, string $url) { argument
71 runCommand(['git', 'clone', '-q', '--end-of-options', $url, $repo], dirname($path));
/php-src/ext/curl/
H A Dcurl.stub.php3606 function curl_init(?string $url = null): CurlHandle|false {} argument
H A Dcurl_arginfo.h49 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, url, IS_STRING, 1, "null")
H A Dinterface.c119 static zend_result php_curl_option_url(php_curl *ch, const zend_string *url) /* {{{ */ in php_curl_option_url() argument
128 zend_string_starts_with_literal_ci(url, "file://") in php_curl_option_url()
129 && '/' != ZSTR_VAL(url)[sizeof("file://") - 1] in php_curl_option_url()
130 && ZSTR_LEN(url) < MAXPATHLEN - 2 in php_curl_option_url()
135 …memmove(_tmp + sizeof("file:///") - 1, ZSTR_VAL(url) + sizeof("file://") - 1, ZSTR_LEN(url) - size… in php_curl_option_url()
137 return php_curl_option_str(ch, CURLOPT_URL, _tmp, ZSTR_LEN(url) + 1); in php_curl_option_url()
141 return php_curl_option_str(ch, CURLOPT_URL, ZSTR_VAL(url), ZSTR_LEN(url)); in php_curl_option_url()
1133 zend_string *url = NULL; in PHP_FUNCTION() local
1137 Z_PARAM_STR_OR_NULL(url) in PHP_FUNCTION()
1156 if (url) { in PHP_FUNCTION()
[all …]
/php-src/ext/curl/tests/
H A Dbug48207.phpt22 $url = "$host/get.inc?test=1";
28 $url = 'file://'. $tempname;
38 $ch = curl_init($url);
H A Dbug55767.phpt13 $url = "{$host}/get.inc?test=getpost&get_param=Hello%20World";
20 curl_setopt($ch, CURLOPT_URL, $url); //set the url we want to use
H A Dbug68089.phpt7 $url = "file:///etc/passwd\0http://google.com";
11 curl_setopt($ch, CURLOPT_URL, $url);
H A Dbug68937.phpt11 $url = "{$host}/get.inc";
13 $ch = curl_init($url);
H A Dbug68937_2.phpt10 $url = "{$host}/get.inc";
12 $ch = curl_init($url);
H A Dbug69316.phpt22 $url = "{$host}/get.inc?test=getpost";
28 curl_setopt($ch, CURLOPT_URL, $url);
H A Dbug77946.phpt13 foreach ($urls as $i => $url) {
14 $conn[$i] = curl_init($url);
28 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.phpt16 $url = "{$host}/get.inc?test=get";
20 curl_setopt($ch, CURLOPT_URL, $url); //set the url we want to use
H A Dcurl_basic_002.phpt16 $url = "{$host}/get.inc?test=get";
21 curl_setopt($ch, CURLOPT_URL, $url); //set the url we want to use
H A Dcurl_basic_003.phpt16 $url = "{$host}/get.inc?test=getpost&get_param=Hello%20World";
23 curl_setopt($ch, CURLOPT_URL, $url); //set the url we want to use
H A Dcurl_basic_004.phpt16 $url = "{$host}/get.inc?test=referer";
22 curl_setopt($ch, CURLOPT_URL, $url); //set the url we want to use
H A Dcurl_basic_005.phpt16 $url = "{$host}/get.inc?test=useragent";
22 curl_setopt($ch, CURLOPT_URL, $url); //set the url we want to use
H A Dcurl_basic_006.phpt16 $url = "{$host}/get.inc?test=get";
20 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.phpt17 $url = "http://www.".uniqid().".".uniqid();
19 curl_setopt($ch, CURLOPT_URL, $url);
H A Dcurl_basic_009.phpt11 $url = 'a' . substr(uniqid(),0,6)."://www.example.com";
13 curl_setopt($ch, CURLOPT_URL, $url);

Completed in 49 milliseconds

1234567