Home
last modified time | relevance | path

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

123456

/PHP-5.3/
H A DNEWS2285 - Fixed bug #50219 (soap call Segmentation fault on a redirected url).
3254 - Fixed bug #43008 (php://filter uris ignore url encoded filternames and can't
4317 - Fixed bug #41600 (url rewriter tags doesn't work with namespaced tags).
5279 - Fixed bug #38661 (mixed-case URL breaks url-wrappers). (Ilia)
6327 - 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 ?)
H A DTODO119 * Implement regex-cache for url-functions.
/PHP-5.3/Zend/
H A Dheader9 | available through the world-wide-web at the following url: |
/PHP-5.3/ext/curl/
H A Dconfig.m49 PHP_ARG_WITH(curlwrappers, if we should use cURL for url streams,
10 [ --with-curlwrappers EXPERIMENTAL: Use cURL for url streams], no, no)
H A Dinterface.c167 static int php_curl_option_url(php_curl *ch, const char *url, const int len) /* {{{ */ in php_curl_option_url() argument
182 if (!(uri = php_url_parse_ex(url, len))) { in php_curl_option_url()
183 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid URL '%s'", url); in php_curl_option_url()
197 error = curl_easy_setopt(ch->cp, CURLOPT_URL, url); in php_curl_option_url()
199 copystr = estrndup(url, len); in php_curl_option_url()
280 ZEND_ARG_INFO(0, url)
1530 char *url = NULL; in PHP_FUNCTION() local
1534 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|s", &url, &url_len) == FAILURE) { in PHP_FUNCTION()
1583 if (url) { in PHP_FUNCTION()
1584 if (!php_curl_option_url(ch, url, url_len)) { in PHP_FUNCTION()
H A Dphp_curl.h173 char *url; member
H A Dstreams.c228 efree(curlstream->url); in php_curl_stream_close()
301 curlstream->url = estrdup(filename); in php_curl_stream_opener()
302 curl_easy_setopt(curlstream->curl, CURLOPT_URL, curlstream->url); in php_curl_stream_opener()
/PHP-5.3/ext/curl/tests/
H A Dbug48207.phpt21 $url = "$host/get.php?test=1";
27 $url = 'file://'. $tempname;
36 $ch = curl_init($url);
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_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_003.phpt24 $url = "{$host}/get.php?test=getpost&get_param=Hello%20World";
31 curl_setopt($ch, CURLOPT_URL, $url); //set the url we want to use
H A Dcurl_basic_004.phpt24 $url = "{$host}/get.php?test=referer";
30 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
H A Dcurl_basic_006.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_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.phpt20 $url = "{$host}/get.php?test=cookie";
26 curl_setopt($ch, CURLOPT_URL, $url); //set the url we want to use
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_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 61 milliseconds

123456