Home
last modified time | relevance | path

Searched refs:url (Results 76 – 100 of 162) sorted by relevance

1234567

/php-src/ext/standard/
H A Dftp_fopen_wrapper.c783 stream = php_ftp_fopen_connect(wrapper, url, "r", 0, NULL, context, NULL, &resource, NULL, NULL); in php_stream_ftp_url_stat()
902 stream = php_ftp_fopen_connect(wrapper, url, "r", 0, NULL, context, NULL, &resource, NULL, NULL); in php_stream_ftp_unlink()
905 php_error_docref(NULL, E_WARNING, "Unable to connect to %s", url); in php_stream_ftp_unlink()
912 php_error_docref(NULL, E_WARNING, "Invalid path provided in %s", url); in php_stream_ftp_unlink()
1029 stream = php_ftp_fopen_connect(wrapper, url, "r", 0, NULL, context, NULL, &resource, NULL, NULL); in php_stream_ftp_mkdir()
1032 php_error_docref(NULL, E_WARNING, "Unable to connect to %s", url); in php_stream_ftp_mkdir()
1039 php_error_docref(NULL, E_WARNING, "Invalid path provided in %s", url); in php_stream_ftp_mkdir()
1114 static int php_stream_ftp_rmdir(php_stream_wrapper *wrapper, const char *url, int options, php_stre… in php_stream_ftp_rmdir() argument
1121 stream = php_ftp_fopen_connect(wrapper, url, "r", 0, NULL, context, NULL, &resource, NULL, NULL); in php_stream_ftp_rmdir()
1124 php_error_docref(NULL, E_WARNING, "Unable to connect to %s", url); in php_stream_ftp_rmdir()
[all …]
H A Durl_scanner_ex.re35 #include "url.h"
190 url_parts = php_url_parse_ex(ZSTR_VAL(url->s), ZSTR_LEN(url->s));
194 smart_str_append_smart_str(dest, url);
199 if (url_parts->fragment && '#' == ZSTR_VAL(url->s)[0]) {
200 smart_str_append_smart_str(dest, url);
209 smart_str_append_smart_str(dest, url);
220 smart_str_append_smart_str(dest, url);
233 smart_str_append_smart_str(dest, url);
244 } else if (*(ZSTR_VAL(url->s)) == '/' && *(ZSTR_VAL(url->s)+1) == '/') {
594 smart_str_appendl(&surl, url, urllen);
[all …]
/php-src/ext/curl/tests/
H A Dbug69316.phpt22 $url = "{$host}/get.inc?test=getpost";
28 curl_setopt($ch, CURLOPT_URL, $url);
H A Dcurl_ftp_pasv.phpt19 $url = "ftp://$username:$password@$host/test.phpt" ;
38 curl_setopt ( $ch , CURLOPT_URL, $url );
H A Dcurl_basic_007.phpt2 Test curl_error() & curl_errno() function without url
/php-src/.github/ISSUE_TEMPLATE/
H A Dconfig.yml4 url: https://github.com/php/doc-en/issues
/php-src/ext/standard/tests/file/
H A Dbug27508.phpt11 $url = urldecode(substr($path, 9));
12 $this->fp = fopen($url, $mode);
H A Dbug38450.phpt17 $url = parse_url($path);
18 $this->varname = $url["host"];
H A Dbug38450_1.phpt17 $url = parse_url($path);
18 $this->varname = $url["host"];
H A Dbug52820.phpt19 function do_stuff($url) {
23 curl_setopt($handle, CURLOPT_STDERR, $o = fopen($url, "w+"));
H A Dbug38450_2.phpt17 $url = parse_url($path);
18 $this->varname = $url["host"];
/php-src/sapi/cli/tests/
H A Dbug43177.phpt40 foreach(array("parse", "fatal", "fatal2", "compile") as $url) {
43 GET /$url HTTP/1.1
/php-src/ext/filter/tests/
H A D009.phpt10 var_dump(filter_id("url"));
H A D008.phpt47 string(3) "url"
/php-src/ext/sqlite3/tests/
H A Dbug81742.phpt2 Bug #81742 (open_basedir bypass in SQLite3 by using url encoded file)
/php-src/ext/phar/tests/
H A Dfopen_edgecases.phpt76 …en_edgecases.phar.php.phar.gz): Failed to open stream: phar error: invalid url or non-existent pha…
105 Warning: unlink(): phar error: invalid url or non-existent phar "phar://foo.phar" in %sfopen_edgeca…
111 Warning: rename(): phar error: cannot rename "phar://" to "phar://": invalid or non-writable url "p…
113 …har://%sfopen_edgecases.phar.php/hi" to "phar://": invalid or non-writable url "phar://" in %sfope…
115 …: cannot rename "phar://foo.phar/hi" to "phar://": invalid or non-writable url "phar://" in %sfope…
119 …/hi" to "phar://%sfopen_edgecases.phar.php/there": invalid or non-writable url "phar://%sfopen_edg…
H A D027.phpt87 phar url "phar://" is unknown in %s027.php on line %d
90 Warning: opendir(phar://foo.phar/hi): Failed to open directory: phar error: invalid url or non-exis…
91 phar url "phar://foo.phar/hi" is unknown in %s027.php on line %d
/php-src/ext/soap/tests/
H A Dbug49898.phpt9 …t = new SoapClient(null, array('uri' => 'mo:http://www.w3.org/', 'location' => 'http://some.url'));
H A Dbug46760.phpt13 'location' => 'http://some.url'));
/php-src/ext/json/tests/
H A Dpass001.phpt42 \"url\": \"http://www.JSON.org/\",
125 "url": "http://www.JSON.org/",
227 ["url"]=>
365 ["url"]=>
426 …:false,"null":null,"array":[],"object":{},"address":"50 St. James Street","url":"http:\/\/www.JSON…
428 …:false,"null":null,"array":[],"object":[],"address":"50 St. James Street","url":"http:\/\/www.JSON…
507 ["url"]=>
645 ["url"]=>
/php-src/ext/phar/
H A Ddirstream.c529 int phar_wrapper_rmdir(php_stream_wrapper *wrapper, const char *url, int options, php_stream_contex… in phar_wrapper_rmdir() argument
542 if (FAILURE == phar_split_fname(url, strlen(url), &arch, &arch_len, &entry2, &entry_len, 2, 2)) { in phar_wrapper_rmdir()
543 …: cannot remove directory \"%s\", no phar archive specified, or phar archive does not exist", url); in phar_wrapper_rmdir()
555 …ror(wrapper, options, "phar error: cannot rmdir directory \"%s\", write operations disabled", url); in phar_wrapper_rmdir()
559 if ((resource = phar_parse_url(wrapper, url, "w", options)) == NULL) { in phar_wrapper_rmdir()
566 php_stream_wrapper_log_error(wrapper, options, "phar error: invalid url \"%s\"", url); in phar_wrapper_rmdir()
572 php_stream_wrapper_log_error(wrapper, options, "phar error: not a phar stream url \"%s\"", url); in phar_wrapper_rmdir()
H A Ddirstream.h22 int phar_wrapper_rmdir(php_stream_wrapper *wrapper, const char *url, int options, php_stream_contex…
/php-src/ext/session/tests/
H A Dbug41600.phpt2 Bug #41600 (url rewriter tags doesn't work with namespaced tags)
/php-src/ext/intl/tests/
H A Dspoofchecker_002.phpt10 $url = "http://www.payp\xD0\xB0l.com";
/php-src/main/streams/
H A Duserspace.c48 static int user_wrapper_unlink(php_stream_wrapper *wrapper, const char *url, int options, php_strea…
51 static int user_wrapper_rmdir(php_stream_wrapper *wrapper, const char *url, int options, php_stream…
1049 ZVAL_STRING(&args[0], url); in user_wrapper_unlink()
1112 static int user_wrapper_mkdir(php_stream_wrapper *wrapper, const char *url, int mode, in user_wrapper_mkdir() argument
1129 ZVAL_STRING(&args[0], url); in user_wrapper_mkdir()
1155 static int user_wrapper_rmdir(php_stream_wrapper *wrapper, const char *url, in user_wrapper_rmdir() argument
1172 ZVAL_STRING(&args[0], url); in user_wrapper_rmdir()
1196 static int user_wrapper_metadata(php_stream_wrapper *wrapper, const char *url, int option, in user_wrapper_metadata() argument
1238 ZVAL_STRING(&args[0], url); in user_wrapper_metadata()
1264 static int user_wrapper_stat_url(php_stream_wrapper *wrapper, const char *url, int flags, in user_wrapper_stat_url() argument
[all …]

Completed in 33 milliseconds

1234567