Home
last modified time | relevance | path

Searched refs:url (Results 26 – 50 of 153) sorted by relevance

1234567

/PHP-5.5/ext/curl/tests/
H A Dcurl_setopt_basic002.phpt21 $url = "{$host}/";
35 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_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_copy_handle_basic_006.phpt16 $url = "{$host}/get.php?test=useragent";
22 curl_setopt($ch, CURLOPT_URL, $url); //set the url we want to use
H A Dcurl_copy_handle_basic_007.phpt12 $url = "{$host}/get.php?test=getpost";
20 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 Dcurl_basic_009.phpt10 $url = uniqid()."://www.".uniqid().".".uniqid();
12 curl_setopt($ch, CURLOPT_URL, $url);
H A Dcurl_basic_020.phpt12 $url = "{$host}/get.php?test=";
14 curl_setopt($ch, CURLOPT_URL, $url);
H A Dcurl_basic_021.phpt11 $url = "{$host}/get.php?test=contenttype";
14 curl_setopt($ch, CURLOPT_URL, $url);
H A Dcurl_copy_handle_basic_008.phpt10 $url = "{$host}/get.php";
11 $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 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_008.phpt16 $url = "http://www.".uniqid().".".uniqid();
18 curl_setopt($ch, CURLOPT_URL, $url);
H A Dbug48207.phpt22 $url = "$host/get.php?test=1";
28 $url = 'file://'. $tempname;
37 $ch = curl_init($url);
H A Dcurl_setopt_array_basic.phpt22 $url = "{$host}/get.php?test=get";
26 $url = 'file://'. $tempname;
39 CURLOPT_URL => $url,
H A Dcurl_basic_010.phpt16 $url = "http://www.example.org";
19 curl_setopt($ch, CURLOPT_URL, $url);
/PHP-5.5/sapi/cli/
H A Dphp_http_parser.c649 MARK(url); in php_http_parser_execute()
658 MARK(url); in php_http_parser_execute()
714 CALLBACK(url); in php_http_parser_execute()
736 CALLBACK(url); in php_http_parser_execute()
751 CALLBACK(url); in php_http_parser_execute()
756 CALLBACK(url); in php_http_parser_execute()
763 CALLBACK(url); in php_http_parser_execute()
795 CALLBACK(url); in php_http_parser_execute()
799 CALLBACK(url); in php_http_parser_execute()
805 CALLBACK(url); in php_http_parser_execute()
[all …]
/PHP-5.5/ext/session/tests/
H A D018.phpt22 <form accept-charset="ISO-8859-15, ISO-8859-1" action=url.php>
27 <form accept-charset="ISO-8859-15, ISO-8859-1" action=url.php><input type="hidden" name="PHPSESSID"…
/PHP-5.5/ext/standard/tests/url/
H A Dparse_url_basic_010.phpt5 /* Prototype : proto mixed parse_url(string url, [int url_component])
7 * Source code: ext/standard/url.c
/PHP-5.5/ext/phar/tests/
H A Dopendir.phpt40 phar url "phar://" is unknown in %sopendir.php on line %d
42 Warning: opendir(phar://hi.phar): failed to open dir: phar error: invalid url or non-existent phar …
43 phar url "phar://hi.phar" is unknown in %sopendir.php on line %d
/PHP-5.5/ext/intl/tests/
H A Dspoofchecker_001.phpt8 $url = "http://www.payp\xD0\xB0l.com";
12 var_dump($x->isSuspicious($url));
/PHP-5.5/ext/phar/
H A Dstream.h29 static int phar_wrapper_unlink(php_stream_wrapper *wrapper, char *url, int options, php_stream_cont…
30 static int phar_wrapper_stat(php_stream_wrapper *wrapper, char *url, int flags, php_stream_statbuf …
/PHP-5.5/ext/standard/tests/streams/
H A Dbug40459.phpt18 function url_stat($url, $flags)
24 function unlink($url)
44 function dir_opendir($url, $options)
/PHP-5.5/ext/openssl/tests/
H A Dsni_001.phpt43 function do_http_test($url, $context) {
45 $fh = fopen($url, 'r', false, $context);
51 function do_ssl_test($url, $context) {
53 $fh = stream_socket_client($url, $errno, $errstr,
60 function do_enable_crypto_test($url, $context) {
62 $fh = stream_socket_client($url, $errno, $errstr,
/PHP-5.5/ext/standard/
H A Durl_scanner_ex.re9 | available through the world-wide-web at the following url: |
38 #include "url.h"
110 static inline void append_modified_url(smart_str *url, smart_str *dest, smart_str *url_app, const c…
116 q = (p = url->c) + url->len;
120 ":" { smart_str_append(dest, url); return; }
128 if (bash && bash - url->c == 0) {
129 smart_str_append(dest, url);
134 smart_str_appendl(dest, url->c, bash - url->c);
136 smart_str_append(dest, url);
360 char *php_url_scanner_adapt_single_url(const char *url, size_t urllen, const char *name, const char…
[all …]

Completed in 32 milliseconds

1234567