Home
last modified time | relevance | path

Searched refs:url (Results 1 – 25 of 147) sorted by relevance

123456

/PHP-5.3/ext/standard/tests/url/
H A Dparse_url_error_002.phpt2 Test parse_url() function: url component specifier out of range
5 /* Prototype : proto mixed parse_url(string url, [int url_component])
7 * Source code: ext/standard/url.c
11 echo "*** Testing parse_url() : error conditions: url component specifier out of range ***\n";
12 $url = 'http://secret:hideout@www.php.net:80/index.php?test=1&test2=char&test3=mixesCI#some_page_re…
15 var_dump(parse_url($url, -1));
18 var_dump(parse_url($url, 99));
23 *** Testing parse_url() : error conditions: url component specifier out of range ***
H A Dget_headers_error_002.phpt8 /* Prototype : proto array get_headers(string url[, int format])
10 * Source code: ext/standard/url.c
15 $url = 'http://php.net';
19 var_dump( get_headers($url, "#PHPTestFest2009 Norway") );
23 var_dump( get_headers($url, array()) );
32 var_dump( get_headers($url, $object) );
H A Dparse_url_error_001.phpt5 /* Prototype : proto mixed parse_url(string url, [int url_component])
7 * Source code: ext/standard/url.c
19 $url = 'string_val';
22 var_dump( parse_url($url, $url_component, $extra_arg) );
H A Dget_headers_error_001.phpt8 /* Prototype : proto array get_headers(string url[, int format])
10 * Source code: ext/standard/url.c
22 $url = 'string_val';
25 var_dump( get_headers($url, $format, $extra_arg) );
/PHP-5.3/ext/curl/tests/
H A Dcurl_error_basic.phpt2 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");
26 $url = "fakeURL";
31 $ch = curl_init($url);
H A Dcurl_basic_015.phpt2 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 Dcurl_basic_017.phpt20 $url = "{$host}/get.php?test=get";
29 curl_setopt($chs[0], CURLOPT_URL, $url); //set the url we want to use
30 curl_setopt($chs[1], CURLOPT_URL, $url); //set the url we want to use
31 curl_setopt($chs[2], CURLOPT_URL, $url); //set the url we want to use
H A Dcurl_basic_019.phpt14 $url = "{$host}/get.php?test=";
17 curl_setopt($ch, CURLOPT_URL, $url);
20 var_dump($url == $info);
H A Dcurl_copy_handle_basic_001.phpt15 $url = "{$host}/get.php?test=getpost&get_param=Hello%20World";
20 curl_setopt($ch, CURLOPT_URL, $url); //set the url we want to use
H A Dcurl_copy_handle_basic_004.phpt15 $url = "{$host}/get.php?test=getpost&get_param=Hello%20World";
20 curl_setopt($ch, CURLOPT_URL, $url); //set the url we want to use
H A Dcurl_setopt_basic004.phpt16 $url = "{$host}/";
20 curl_setopt($ch, CURLOPT_URL, $url);
32 curl_setopt($ch, CURLOPT_URL, $url);
H A Dcurl_basic_012.phpt20 $url = "{$host}/get.php?test=httpversion";
26 curl_setopt($ch, CURLOPT_URL, $url); //set the url we want to use
H A Dcurl_basic_013.phpt20 $url = "{$host}/get.php?test=httpversion";
26 curl_setopt($ch, CURLOPT_URL, $url); //set the url we want to use
H A Dcurl_basic_011.phpt20 $url = "{$host}/get.php?test=cookie";
26 curl_setopt($ch, CURLOPT_URL, $url); //set the url we want to use
H A Dcurl_copy_handle_basic_002.phpt14 $url = "{$host}/get.php?test=getpost";
21 curl_setopt($ch, CURLOPT_URL, $url); //set the url we want to use
H A Dcurl_CURLOPT_READDATA.phpt12 $url = getenv('PHP_CURL_HTTP_REMOTE_SERVER') . '/get.php?test=post';
20 $ch = curl_init($url);
21 curl_setopt($ch, CURLOPT_URL, $url);
H A Dcurl_copy_handle_basic_005.phpt15 $url = "{$host}/get.php?test=getpost";
22 curl_setopt($ch, CURLOPT_URL, $url); //set the url we want to use
H A Dcurl_setopt_basic002.phpt20 $url = "{$host}/";
34 curl_setopt($ch, CURLOPT_URL, $url); //set the url we want to use
H A Dcurl_basic_001.phpt24 $url = "{$host}/get.php?test=get";
28 curl_setopt($ch, CURLOPT_URL, $url); //set the url we want to use
H A Dcurl_basic_002.phpt24 $url = "{$host}/get.php?test=get";
29 curl_setopt($ch, CURLOPT_URL, $url); //set the url we want to use
H A Dcurl_basic_005.phpt24 $url = "{$host}/get.php?test=useragent";
30 curl_setopt($ch, CURLOPT_URL, $url); //set the url we want to use
/PHP-5.3/ext/filter/
H A Dlogical_filters.c442 php_url *url; in php_filter_validate_url() local
454 if (url == NULL) { in php_filter_validate_url()
458 …if (url->scheme != NULL && (!strcasecmp(url->scheme, "http") || !strcasecmp(url->scheme, "https"))… in php_filter_validate_url()
461 if (url->host == NULL) { in php_filter_validate_url()
465 e = url->host + strlen(url->host); in php_filter_validate_url()
466 s = url->host; in php_filter_validate_url()
486 url->scheme == NULL || in php_filter_validate_url()
488 …(url->host == NULL && (strcmp(url->scheme, "mailto") && strcmp(url->scheme, "news") && strcmp(url-… in php_filter_validate_url()
489 …((flags & FILTER_FLAG_PATH_REQUIRED) && url->path == NULL) || ((flags & FILTER_FLAG_QUERY_REQUIRED… in php_filter_validate_url()
492 php_url_free(url); in php_filter_validate_url()
[all …]
/PHP-5.3/ext/standard/tests/file/
H A Dbug43008.phpt2 Bug #43008 (php://filter uris ignore url encoded filternames and can't handle slashes)
9 $url = b""
16 var_dump(urlencode(file_get_contents($url)));
H A Dbug44034.phpt13 foreach($urls as $url) {
14 echo strtr($url, array("\r" => "\\r", "\n" => "\\n")) . "\n";
15 var_dump(file($url, FILE_IGNORE_NEW_LINES));
/PHP-5.3/ext/standard/tests/streams/
H A Dbug44818.phpt5 function test($url, $mode) {
6 echo "$url, $mode\n";
7 $fd = fopen($url, $mode);

Completed in 34 milliseconds

123456