/PHP-8.1/ext/curl/tests/ |
H A D | curl_basic_015.phpt | 2 Test curl_init() function with $url parameter defined 9 $url = 'http://www.example.com/'; 10 $ch = curl_init($url); 11 var_dump($url == curl_getinfo($ch, CURLINFO_EFFECTIVE_URL));
|
H A D | curl_error_basic.phpt | 2 curl_error() function - basic test for curl_error using a fake url 11 $url = "fakeURL"; 12 $ip = gethostbyname($url); 13 if ($ip != $url) die("skip 'fakeURL' resolves to $ip\n"); 25 $url = "fakeURL"; 30 $ch = curl_init($url);
|
H A D | curl_basic_019.phpt | 12 $url = "http://{$host}/get.inc?test="; 15 curl_setopt($ch, CURLOPT_URL, $url); 18 var_dump($url == $info);
|
H A D | curl_basic_011.phpt | 15 $url = "{$host}/get.inc?test=cookie"; 21 curl_setopt($ch, CURLOPT_URL, $url); //set the url we want to use
|
H A D | curl_basic_012.phpt | 15 $url = "{$host}/get.inc?test=httpversion"; 21 curl_setopt($ch, CURLOPT_URL, $url); //set the url we want to use
|
H A D | curl_basic_013.phpt | 15 $url = "{$host}/get.inc?test=httpversion"; 21 curl_setopt($ch, CURLOPT_URL, $url); //set the url we want to use
|
H A D | curl_basic_002.phpt | 16 $url = "{$host}/get.inc?test=get"; 21 curl_setopt($ch, CURLOPT_URL, $url); //set the url we want to use
|
H A D | curl_basic_005.phpt | 16 $url = "{$host}/get.inc?test=useragent"; 22 curl_setopt($ch, CURLOPT_URL, $url); //set the url we want to use
|
H A D | curl_copy_handle_basic_004.phpt | 16 $url = "{$host}/get.inc?test=getpost&get_param=Hello%20World"; 21 curl_setopt($ch, CURLOPT_URL, $url); //set the url we want to use
|
H A D | curl_basic_001.phpt | 16 $url = "{$host}/get.inc?test=get"; 20 curl_setopt($ch, CURLOPT_URL, $url); //set the url we want to use
|
H A D | curl_basic_004.phpt | 16 $url = "{$host}/get.inc?test=referer"; 22 curl_setopt($ch, CURLOPT_URL, $url); //set the url we want to use
|
H A D | curl_basic_006.phpt | 16 $url = "{$host}/get.inc?test=get"; 20 curl_setopt($ch, CURLOPT_URL, $url); //set the url we want to use
|
H A D | curl_copy_handle_basic_001.phpt | 16 $url = "{$host}/get.inc?test=getpost&get_param=Hello%20World"; 21 curl_setopt($ch, CURLOPT_URL, $url); //set the url we want to use
|
H A D | curl_setopt_basic004.phpt | 17 $url = "{$host}/"; 21 curl_setopt($ch, CURLOPT_URL, $url); 33 curl_setopt($ch, CURLOPT_URL, $url);
|
H A D | bug77946.phpt | 13 foreach ($urls as $i => $url) { 14 $conn[$i] = curl_init($url); 28 foreach ($urls as $i => $url) {
|
H A D | curl_multi_info_read.phpt | 15 foreach ($urls as $i => $url) { 16 $conn[$i] = curl_init($url); 29 foreach ($urls as $i => $url) {
|
H A D | bug55767.phpt | 13 $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 D | curl_copy_handle_basic_002.phpt | 15 $url = "{$host}/get.inc?test=getpost"; 22 curl_setopt($ch, CURLOPT_URL, $url); //set the url we want to use
|
/PHP-8.1/ext/standard/tests/url/ |
H A D | parse_url_error_002.phpt | 2 Test parse_url() function: url component specifier out of range 5 echo "*** Testing parse_url() : error conditions: url component specifier out of range ***\n"; 6 $url = 'http://secret:hideout@www.php.net:80/index.php?test=1&test2=char&test3=mixesCI#some_page_re… 9 var_dump(parse_url($url, -1)); 13 parse_url($url, 99); 21 *** Testing parse_url() : error conditions: url component specifier out of range ***
|
/PHP-8.1/ext/standard/tests/file/ |
H A D | bug43008.phpt | 2 Bug #43008 (php://filter uris ignore url encoded filternames and can't handle slashes) 9 $url = "" 16 var_dump(urlencode(file_get_contents($url)));
|
H A D | bug44034.phpt | 13 foreach($urls as $url) { 14 echo strtr($url, array("\r" => "\\r", "\n" => "\\n")) . "\n"; 15 var_dump(file($url, FILE_IGNORE_NEW_LINES));
|
/PHP-8.1/ext/filter/ |
H A D | logical_filters.c | 593 php_url *url; in php_filter_validate_url() local 605 if (url == NULL) { in php_filter_validate_url() 614 if (url->host == NULL) { in php_filter_validate_url() 628 php_url_free(url); in php_filter_validate_url() 634 url->scheme == NULL || in php_filter_validate_url() 636 …url->host == NULL && (!zend_string_equals_literal(url->scheme, "mailto") && !zend_string_equals_li… in php_filter_validate_url() 640 php_url_free(url); in php_filter_validate_url() 644 if ((url->user != NULL && !is_userinfo_valid(url->user)) in php_filter_validate_url() 645 || (url->pass != NULL && !is_userinfo_valid(url->pass)) in php_filter_validate_url() 647 php_url_free(url); in php_filter_validate_url() [all …]
|
/PHP-8.1/ext/standard/tests/http/ |
H A D | bug78719.phpt | 11 $url = str_repeat('*', 2000); 13 "data://text/plain,HTTP/1.0 302 Ok\r\nLocation: $url\r\n\r\nBody", 20 var_dump(stream_get_meta_data($stream)['wrapper_data'][1] === "Location: $url");
|
/PHP-8.1/main/streams/ |
H A D | plain_wrapper.c | 1207 url += sizeof("file://") - 1; in php_plain_files_url_stater() 1226 return VCWD_STAT(url, &ssb->sb); in php_plain_files_url_stater() 1234 url += sizeof("file://") - 1; in php_plain_files_unlink() 1241 ret = VCWD_UNLINK(url); in php_plain_files_unlink() 1451 url += sizeof("file://") - 1; in php_plain_files_rmdir() 1459 if (!php_win32_check_trailing_space(url, strlen(url))) { in php_plain_files_rmdir() 1465 if (VCWD_RMDIR(url) < 0) { in php_plain_files_rmdir() 1487 if (!php_win32_check_trailing_space(url, strlen(url))) { in php_plain_files_metadata() 1494 url += sizeof("file://") - 1; in php_plain_files_metadata() 1513 ret = VCWD_UTIME(url, newtime); in php_plain_files_metadata() [all …]
|
/PHP-8.1/ext/standard/tests/streams/ |
H A D | bug44818.phpt | 5 function test($url, $mode) { 6 echo "$url, $mode\n"; 7 $fd = fopen($url, $mode);
|