Home
last modified time | relevance | path

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

123456

/PHP-8.1/ext/standard/tests/url/
H A Dparse_url_basic_009.phpt10 foreach ($urls as $url) {
11 echo "--> $url : ";
12 var_dump(parse_url($url, PHP_URL_FRAGMENT));
H A Dparse_url_basic_003.phpt10 foreach ($urls as $url) {
11 echo "--> $url : ";
12 var_dump(parse_url($url, PHP_URL_HOST));
H A Dparse_url_basic_007.phpt10 foreach ($urls as $url) {
11 echo "--> $url : ";
12 var_dump(parse_url($url, PHP_URL_PATH));
H A Dparse_url_basic_001.phpt10 foreach ($urls as $url) {
11 echo "\n--> $url: ";
12 var_dump(parse_url($url));
H A Dparse_url_unterminated.phpt14 foreach ($urls as $url) {
15 echo "\n--> $url: ";
16 $str = zend_create_unterminated_string($url);
/PHP-8.1/main/
H A Dphp_streams.h139 …int (*url_stat)(php_stream_wrapper *wrapper, const char *url, int flags, php_stream_statbuf *ssb, …
147 …int (*unlink)(php_stream_wrapper *wrapper, const char *url, int options, php_stream_context *conte…
153 …int (*stream_mkdir)(php_stream_wrapper *wrapper, const char *url, int mode, int options, php_strea…
154 …int (*stream_rmdir)(php_stream_wrapper *wrapper, const char *url, int options, php_stream_context …
156 …int (*stream_metadata)(php_stream_wrapper *wrapper, const char *url, int options, void *value, php…
/PHP-8.1/ext/phar/
H A Dstream.c550 static int phar_wrapper_stat(php_stream_wrapper *wrapper, const char *url, int flags, in phar_wrapper_stat() argument
560 if ((resource = phar_parse_url(wrapper, url, "r", flags|PHP_STREAM_URL_STAT_QUIET)) == NULL) { in phar_wrapper_stat()
659 static int phar_wrapper_unlink(php_stream_wrapper *wrapper, const char *url, int options, php_strea… in phar_wrapper_unlink() argument
668 if ((resource = phar_parse_url(wrapper, url, "rb", options)) == NULL) { in phar_wrapper_unlink()
676 php_stream_wrapper_log_error(wrapper, options, "phar error: invalid url \"%s\"", url); in phar_wrapper_unlink()
682 php_stream_wrapper_log_error(wrapper, options, "phar error: not a phar stream url \"%s\"", url); in phar_wrapper_unlink()
702 php_stream_wrapper_log_error(wrapper, options, "unlink of \"%s\" failed: %s", url, error); in phar_wrapper_unlink()
705 …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-8.1/ext/phar/tests/
H A D020.phpt2 Phar: url stat
/PHP-8.1/ext/curl/
H A Dcurl.stub.php55 function curl_init(?string $url = null): CurlHandle|false {} argument
H A Dcurl_arginfo.h49 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, url, IS_STRING, 1, "null")
H A Dinterface.c119 static int php_curl_option_url(php_curl *ch, const char *url, const size_t len) /* {{{ */ in php_curl_option_url() argument
127 …if (len > sizeof("file://") - 1 && '/' != url[sizeof("file://") - 1] && !strncmp("file://", url, s… in php_curl_option_url()
131 memmove(_tmp + sizeof("file:///") - 1, url + sizeof("file://") - 1, len - sizeof("file://") + 1); in php_curl_option_url()
137 return php_curl_option_str(ch, CURLOPT_URL, url, len); in php_curl_option_url()
1855 zend_string *url = NULL; in PHP_FUNCTION() local
1859 Z_PARAM_STR_OR_NULL(url) in PHP_FUNCTION()
1878 if (url) { in PHP_FUNCTION()
1879 if (php_curl_option_url(ch, ZSTR_VAL(url), ZSTR_LEN(url)) == FAILURE) { in PHP_FUNCTION()
/PHP-8.1/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-8.1/ext/opcache/jit/dynasm/
H A Ddynasm.lua17 url = "https://luajit.org/dynasm.html",
658 _info.name, _info.version, _info.release, _info.url))
884 ]], _info.url,
975 stdout:write("DynASM ", _info.version, " ", _info.release, " ", _info.url, "\n")
1006 _info.name, _info.version, _info.release, _info.url, _info.copyright))
/PHP-8.1/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-8.1/ext/standard/
H A Dconfig.w3233 string.c scanf.c syslog.c type.c uniqid.c url.c var.c \
H A Durl.c682 char *url; in PHP_FUNCTION() local
691 Z_PARAM_PATH(url, url_len) in PHP_FUNCTION()
699 …if (!(stream = php_stream_open_wrapper_ex(url, "r", REPORT_ERRORS | STREAM_USE_URL | STREAM_ONLY_G… in PHP_FUNCTION()
/PHP-8.1/ext/standard/tests/file/
H A Dinclude_userstream_002.phpt2 local user streams must not be able to open() url's
/PHP-8.1/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-8.1/ext/openssl/
H A Dxp_ssl.c2622 php_url *url; in php_openssl_get_url_name() local
2628 url = php_url_parse_ex(resourcename, resourcenamelen); in php_openssl_get_url_name()
2629 if (!url) { in php_openssl_get_url_name()
2633 if (url->host) { in php_openssl_get_url_name()
2634 const char * host = ZSTR_VAL(url->host); in php_openssl_get_url_name()
2636 size_t len = ZSTR_LEN(url->host); in php_openssl_get_url_name()
2647 php_url_free(url); in php_openssl_get_url_name()
2651 php_url_free(url); in php_openssl_get_url_name()
/PHP-8.1/.github/workflows/
H A Dpush.yml37 group: ${{ github.workflow }}-${{ github.event.pull_request.url || github.run_id }}
/PHP-8.1/ext/session/
H A Dphp_session.h250 PHPAPI void session_adapt_url(const char *url, size_t url_len, char **new_url, size_t *new_len);
/PHP-8.1/ext/ldap/
H A Dldap.c1157 char *url = host; in PHP_FUNCTION() local
1158 if (url && !ldap_is_ldap_url(url)) { in PHP_FUNCTION()
1166 url = emalloc(urllen); in PHP_FUNCTION()
1167 snprintf( url, urllen, "ldap://%s:" ZEND_LONG_FMT, host, port ); in PHP_FUNCTION()
1173 rc = ldap_initialize(&ldap, url); in PHP_FUNCTION()
1185 if (url != host) { in PHP_FUNCTION()
1186 efree(url); in PHP_FUNCTION()
3807 int _ldap_rebind_proc(LDAP *ldap, const char *url, ber_tag_t req, ber_int_t msgid, void *params) in _ldap_rebind_proc() argument
3829 ZVAL_STRING(&cb_args[1], url); in _ldap_rebind_proc()
/PHP-8.1/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\\/"

Completed in 83 milliseconds

123456