Home
last modified time | relevance | path

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

1234567

/PHP-5.5/
H A D.gitattributes143 /ext/standard/tests/url/rawurldecode_variation_001.phpt -crlf
H A DNEWS5335 - Fixed bug #50219 (soap call Segmentation fault on a redirected url).
6304 - Fixed bug #43008 (php://filter uris ignore url encoded filternames and can't
7367 - Fixed bug #41600 (url rewriter tags doesn't work with namespaced tags).
8329 - Fixed bug #38661 (mixed-case URL breaks url-wrappers). (Ilia)
9377 - Fixed bug #34478 (Incorrect parsing of url's fragment (#...)). (Dmitry)
H A DREADME.TESTING2106 this section is used to build the url used in an HTTP request. Valid values
108 SCRIPT_NAME The inital part of the request url
109 PATH_INFO The pathinfo part of a request url
110 FRAGMENT The fragment section of a url (after #)
111 QUERY_STRING The query part of a url (after ?)
/PHP-5.5/Zend/
H A Dheader9 | available through the world-wide-web at the following url: |
/PHP-5.5/ext/curl/
H A Dinterface.c197 static int php_curl_option_url(php_curl *ch, const char *url, const int len TSRMLS_DC) /* {{{ */ in php_curl_option_url() argument
206 if (!(uri = php_url_parse_ex(url, len))) { in php_curl_option_url()
207 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid URL '%s'", url); in php_curl_option_url()
220 return php_curl_option_str(ch, CURLOPT_URL, url, len, 0 TSRMLS_CC); in php_curl_option_url()
295 ZEND_ARG_INFO(0, url)
1955 char *url = NULL; in PHP_FUNCTION() local
1958 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|s", &url, &url_len) == FAILURE) { in PHP_FUNCTION()
1982 if (url) { in PHP_FUNCTION()
1983 if (php_curl_option_url(ch, url, url_len TSRMLS_CC) == FAILURE) { in PHP_FUNCTION()
/PHP-5.5/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 Dbug69316.phpt22 $url = "{$host}/get.php?test=getpost";
28 curl_setopt($ch, CURLOPT_URL, $url);
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 = uniqid()."://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.php?test=cookie";
27 curl_setopt($ch, CURLOPT_URL, $url); //set the url we want to use
H A Dcurl_basic_012.phpt21 $url = "{$host}/get.php?test=httpversion";
27 curl_setopt($ch, CURLOPT_URL, $url); //set the url we want to use
H A Dcurl_basic_013.phpt21 $url = "{$host}/get.php?test=httpversion";
27 curl_setopt($ch, CURLOPT_URL, $url); //set the url we want to use
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_016.phpt22 [%u|b%"url"]=>

Completed in 60 milliseconds

1234567