Home
last modified time | relevance | path

Searched refs:url (Results 101 – 125 of 140) sorted by relevance

123456

/PHP-7.4/ext/phar/tests/tar/
H A Dtar_nostub.phpt46 phar url "phar://%star_nostub.phar.tar/" is unknown
/PHP-7.4/main/
H A Dbuild-defs.h.in9 | available through the world-wide-web at the following url: |
H A Dphp_streams.h141 …int (*url_stat)(php_stream_wrapper *wrapper, const char *url, int flags, php_stream_statbuf *ssb, …
149 …int (*unlink)(php_stream_wrapper *wrapper, const char *url, int options, php_stream_context *conte…
155 …int (*stream_mkdir)(php_stream_wrapper *wrapper, const char *url, int mode, int options, php_strea…
156 …int (*stream_rmdir)(php_stream_wrapper *wrapper, const char *url, int options, php_stream_context …
158 …int (*stream_metadata)(php_stream_wrapper *wrapper, const char *url, int options, void *value, php…
/PHP-7.4/win32/build/
H A Dmkdist.php525 $url = "http://pear.php.net/get/$filename"; variable
526 echo "Downloading $name from $url\n";
528 copy($url, $destfilename);
H A Dphpize.js.in9 | available through the world-wide-web at the following url: |
/PHP-7.4/ext/phar/tests/
H A D020.phpt2 Phar: url stat
/PHP-7.4/ext/phar/
H A Dstream.c553 static int phar_wrapper_stat(php_stream_wrapper *wrapper, const char *url, int flags, in phar_wrapper_stat() argument
563 if ((resource = phar_parse_url(wrapper, url, "r", flags|PHP_STREAM_URL_STAT_QUIET)) == NULL) { in phar_wrapper_stat()
662 static int phar_wrapper_unlink(php_stream_wrapper *wrapper, const char *url, int options, php_strea… in phar_wrapper_unlink() argument
671 if ((resource = phar_parse_url(wrapper, url, "rb", options)) == NULL) { in phar_wrapper_unlink()
679 php_stream_wrapper_log_error(wrapper, options, "phar error: invalid url \"%s\"", url); in phar_wrapper_unlink()
685 php_stream_wrapper_log_error(wrapper, options, "phar error: not a phar stream url \"%s\"", url); in phar_wrapper_unlink()
705 php_stream_wrapper_log_error(wrapper, options, "unlink of \"%s\" failed: %s", url, error); in phar_wrapper_unlink()
708 …hp_stream_wrapper_log_error(wrapper, options, "unlink of \"%s\" failed, file does not exist", url); in phar_wrapper_unlink()
H A Dphar_path_check.re9 | available through the world-wide-web at the following url: |
/PHP-7.4/sapi/cli/tests/
H A Dphp_cli_server_014.phpt72 </head><body><h1>Not Found</h1><p>The requested resource <code class="url">/main/no-exists.php</cod…
/PHP-7.4/ext/standard/
H A Dconfig.w3233 string.c scanf.c syslog.c type.c uniqid.c url.c var.c \
H A Durl.c676 char *url; local
685 Z_PARAM_PATH(url, url_len)
693 …if (!(stream = php_stream_open_wrapper_ex(url, "r", REPORT_ERRORS | STREAM_USE_URL | STREAM_ONLY_G…
/PHP-7.4/ext/standard/tests/url/
H A Dparse_url_basic_001.phpt5 /* Prototype : proto mixed parse_url(string url, [int url_component])
7 * Source code: ext/standard/url.c
16 foreach ($urls as $url) {
17 echo "\n--> $url: ";
18 var_dump(parse_url($url));
H A Dparse_url_unterminated.phpt16 foreach ($urls as $url) {
17 echo "\n--> $url: ";
18 $str = zend_create_unterminated_string($url);
/PHP-7.4/ext/standard/tests/file/
H A Dinclude_userstream_002.phpt2 local user streams must not be able to open() url's
H A Duserstreams.phpt174 $b = @fopen("bogon://url", "rb");
/PHP-7.4/ext/standard/tests/strings/
H A Durl_t.phpt77 foreach ($sample_urls as $url) {
78 echo "\n--> $url: ";
79 var_dump(@parse_url($url));
82 …$url = 'http://secret:hideout@www.php.net:80/index.php?test=1&test2=char&test3=mixesCI#some_page_r…
84 var_dump(parse_url($url, $v));
/PHP-7.4/ext/filter/tests/
H A D033.phpt29 url PHP 1 foo@bar.com http://a.b.c 1.2.3.4 123 123abc<>() O…
H A D015.phpt30 'http//www.example/wrong/url/',
/PHP-7.4/ext/curl/
H A Dinterface.c137 static int php_curl_option_url(php_curl *ch, const char *url, const size_t len) /* {{{ */ in php_curl_option_url() argument
146 if (!(uri = php_url_parse_ex(url, len))) { in php_curl_option_url()
147 php_error_docref(NULL, E_WARNING, "Invalid URL '%s'", url); in php_curl_option_url()
161 …if (len > sizeof("file://") - 1 && '/' != url[sizeof("file://") - 1] && !strncmp("file://", url, s… in php_curl_option_url()
165 memmove(_tmp + sizeof("file:///") - 1, url + sizeof("file://") - 1, len - sizeof("file://") + 1); in php_curl_option_url()
171 return php_curl_option_str(ch, CURLOPT_URL, url, len, 0); in php_curl_option_url()
245 ZEND_ARG_INFO(0, url)
1998 zend_string *url = NULL; in PHP_FUNCTION() local
2002 Z_PARAM_STR(url) in PHP_FUNCTION()
2021 if (url) { in PHP_FUNCTION()
[all …]
/PHP-7.4/ext/openssl/
H A Dxp_ssl.c2623 php_url *url; in php_openssl_get_url_name() local
2629 url = php_url_parse_ex(resourcename, resourcenamelen); in php_openssl_get_url_name()
2630 if (!url) { in php_openssl_get_url_name()
2634 if (url->host) { in php_openssl_get_url_name()
2635 const char * host = ZSTR_VAL(url->host); in php_openssl_get_url_name()
2637 size_t len = ZSTR_LEN(url->host); in php_openssl_get_url_name()
2648 php_url_free(url); in php_openssl_get_url_name()
2652 php_url_free(url); in php_openssl_get_url_name()
/PHP-7.4/
H A Drun-tests.php3274 $url = str_replace($temp_target, $temp_urlbase, $temp_filenames['file']);
3275 $tested = "<a href='$url'>$tested</a>";
3284 $url = str_replace($temp_target, $temp_urlbase, $temp_filenames['skip']);
3285 $extra = "<a href='$url'>$extra</a>";
3292 $url = str_replace($temp_target, $temp_urlbase, $temp_filenames['diff']);
3293 $diff = "<a href='$url'>diff</a>";
3299 $url = str_replace($temp_target, $temp_urlbase, $temp_filenames['mem']);
3300 $mem = "<a href='$url'>leaks</a>";
/PHP-7.4/ext/pcre/tests/
H A Dpreg_match_error4.phpt24 "url": "\\/tmp\\/buildpacktUY7k\\/support\\/installer\\/",
31 "url": "https:\\/\\/lang-php.s3.amazonaws.com\\/dist-cedar-14-stable\\/"
/PHP-7.4/ext/ldap/
H A Dldap.c1034 char *url = host; in PHP_FUNCTION() local
1035 if (url && !ldap_is_ldap_url(url)) { in PHP_FUNCTION()
1044 url = emalloc(urllen); in PHP_FUNCTION()
1045 snprintf( url, urllen, "ldap://%s:" ZEND_LONG_FMT, host, port ); in PHP_FUNCTION()
1051 rc = ldap_initialize(&ldap, url); in PHP_FUNCTION()
1063 if (url != host) { in PHP_FUNCTION()
1064 efree(url); in PHP_FUNCTION()
3754 int _ldap_rebind_proc(LDAP *ldap, const char *url, ber_tag_t req, ber_int_t msgid, void *params) in _ldap_rebind_proc() argument
3772 ZVAL_STRING(&cb_args[1], url); in _ldap_rebind_proc()
/PHP-7.4/ext/dom/
H A Ddocument.c641 char *url; in dom_document_document_uri_read() local
648 url = (char *) docp->URL; in dom_document_document_uri_read()
649 if (url != NULL) { in dom_document_document_uri_read()
650 ZVAL_STRING(retval, url); in dom_document_document_uri_read()
/PHP-7.4/ext/ffi/
H A Dffi.g9 | available through the world-wide-web at the following url: |
41 | available through the world-wide-web at the following url: |

Completed in 111 milliseconds

123456