/PHP-8.0/main/ |
H A D | php_variables.c | 193 ip = strchr(ip, ']'); in php_register_variable_ex() 494 val = strchr(var, '='); in SAPI_TREAT_DATA_FUNC() 561 p = strchr(env, '='); in import_environment_variable() 631 const char *space = strchr(s, '+'); in php_build_argv() 750 if (PG(variables_order) && (strchr(PG(variables_order),'G') || strchr(PG(variables_order),'g'))) { in php_auto_globals_create_get() 766 (strchr(PG(variables_order),'P') || strchr(PG(variables_order),'p')) && in php_auto_globals_create_post() 784 if (PG(variables_order) && (strchr(PG(variables_order),'C') || strchr(PG(variables_order),'c'))) { in php_auto_globals_create_cookie() 827 if (PG(variables_order) && (strchr(PG(variables_order),'S') || strchr(PG(variables_order),'s'))) { in php_auto_globals_create_server() 867 if (PG(variables_order) && (strchr(PG(variables_order),'E') || strchr(PG(variables_order),'e'))) { in php_auto_globals_create_env()
|
H A D | fopen_wrappers.c | 99 end = strchr(ptr, DEFAULT_DIR_SEPARATOR); in ZEND_INI_MH() 300 end = strchr(ptr, DEFAULT_DIR_SEPARATOR); 359 char *s = strchr(path_info + 2, '/'); 528 end = strchr(p, DEFAULT_DIR_SEPARATOR); 682 end = strchr(ptr, DEFAULT_DIR_SEPARATOR);
|
H A D | rfc1867.c | 110 index = strchr(varname, '['); in normalize_protected_variable() 123 indexend = strchr(index, ']'); in normalize_protected_variable() 418 value = strchr(line, ':'); in multipart_buffer_headers() 731 if (!boundary || !(boundary = strchr(boundary, '='))) { 741 boundary_end = strchr(boundary, '"'); 818 if (strchr(pair, '=')) { 1120 is_arr_upload = (start_arr = strchr(param,'[')) && (param[strlen(param)-1] == ']'); 1174 s = strchr(cd, ';');
|
/PHP-8.0/win32/ |
H A D | fnmatch.c | 95 strchr(string, '/') == NULL ? in fnmatch() 100 if ((string = strchr(string, '/')) == NULL) in fnmatch()
|
H A D | registry.c | 219 p = strchr(path, ':'); in UpdateIniFromRegistry() 233 cwd = strchr(tmp_buf, ':'); in UpdateIniFromRegistry()
|
/PHP-8.0/ext/standard/ |
H A D | php_fopen_wrapper.c | 341 if (strchr(mode, 'r') || strchr(mode, '+')) { in php_stream_url_wrap_php() 344 if (strchr(mode, 'w') || strchr(mode, '+') || strchr(mode, 'a')) { in php_stream_url_wrap_php()
|
H A D | versioning.c | 149 if ((n1 = strchr(p1, '.')) != NULL) { in php_version_compare() 152 if ((n2 = strchr(p2, '.')) != NULL) { in php_version_compare()
|
H A D | dl.c | 121 if (strchr(filename, '/') != NULL || strchr(filename, DEFAULT_SLASH) != NULL) { in php_load_extension()
|
/PHP-8.0/sapi/fpm/fpm/ |
H A D | fpm_unix.c | 64 for (p=strchr(c->listen_acl_users, ',') ; p ; p=strchr(p+1, ',')) { in fpm_unix_resolve_socket_premissions() 71 for (p=strchr(c->listen_acl_groups, ',') ; p ; p=strchr(p+1, ',')) { in fpm_unix_resolve_socket_premissions() 93 if ((end = strchr(p, ','))) { in fpm_unix_resolve_socket_premissions() 126 if ((end = strchr(p, ','))) { in fpm_unix_resolve_socket_premissions()
|
H A D | fpm_sockets.c | 275 if (strchr(address, ':')) { in fpm_sockets_domain_from_address() 411 char *comma = strchr(inherited, ','); in fpm_sockets_init_main() 419 eq = strchr(inherited, '='); in fpm_sockets_init_main()
|
H A D | fpm_main.c | 327 if ((s = strchr(SG(sapi_headers).http_status_line, ' '))) { in sapi_cgi_send_headers() 339 (s = strchr(SG(sapi_headers).http_status_line, ' ')) != 0 && in sapi_cgi_send_headers() 668 while ((ptr = strchr(ptr, DEFAULT_SLASH)) != NULL) { in php_cgi_ini_activate_user_config() 1027 p = strchr(env_script_filename, '?'); in init_request_info() 1048 p = strchr(env_script_filename, '?'); in init_request_info() 1588 if ((val = strchr(php_optarg, '='))) { in main()
|
H A D | fpm_env.c | 71 char *eq = strchr(*envp, '='); in clearenv()
|
/PHP-8.0/ext/dba/libinifile/ |
H A D | inifile.c | 116 if (group_name[0] == '[' && (name = strchr(group_name, ']')) != NULL) { in inifile_key_split() 152 while (*val && strchr(" \t\r\n", *val)) { in etrim() 156 while (l && (strchr(" \t\r\n", val[l-1]))) { in etrim() 175 pos = strchr(fline+1, ']'); in inifile_read() 189 pos = strchr(fline, '='); in inifile_read()
|
/PHP-8.0/ext/standard/tests/file/ |
H A D | include_userstream_001.phpt | 14 if (strchr($mode, 'a'))
|
H A D | include_userstream_002.phpt | 19 if (strchr($mode, 'a'))
|
H A D | include_streams.phpt | 42 if (strchr($mode, 'a'))
|
/PHP-8.0/ext/zip/ |
H A D | zip_stream.c | 135 fragment = strchr(path, '#'); in php_zip_ops_stat() 262 fragment = strchr(path, '#'); in php_stream_zip_opener()
|
/PHP-8.0/ext/sockets/ |
H A D | sockaddr_conv.c | 23 char *scope = strchr(string, '%'); in php_set_inet6_addr()
|
/PHP-8.0/ext/fileinfo/libmagic/ |
H A D | cdf_time.c | 193 if ((q = strchr(p, '\n')) != NULL) in main()
|
/PHP-8.0/ext/zlib/ |
H A D | zlib_fopen_wrapper.c | 113 if (strchr(mode, '+')) { in php_stream_gzopen()
|
/PHP-8.0/sapi/cgi/ |
H A D | cgi_main.c | 387 if ((s = strchr(SG(sapi_headers).http_status_line, ' '))) { in sapi_cgi_send_headers() 399 (s = strchr(SG(sapi_headers).http_status_line, ' ')) != 0 && in sapi_cgi_send_headers() 665 if (PG(variables_order) && (strchr(PG(variables_order),'E') || strchr(PG(variables_order),'e'))) { in cgi_php_import_environment_variables() 837 while ((ptr = strchr(ptr, DEFAULT_SLASH)) != NULL) { 1594 val = strchr(*env, '='); 1667 char *p = strchr(h->header, ':'); 1801 if((query_string = getenv("QUERY_STRING")) != NULL && strchr(query_string, '=') == NULL) { 1831 if ((val = strchr(php_optarg, '='))) { 2240 char *comma = strchr(php_optarg, ',');
|
/PHP-8.0/ext/pcre/pcre2lib/ |
H A D | pcre2_convert.c | 282 if (*posix < 127 && strchr(posix_meta_escapes, *posix) != NULL) in convert_posix() 340 if (c < 128 && strchr(pcre2_escaped_literals, c) != NULL) in convert_posix() 816 with_escape = strchr(pcre2_escaped_literals, separator) != NULL; in convert_glob() 1002 if (c < 128 && strchr(pcre2_escaped_literals, c) != NULL) in convert_glob()
|
/PHP-8.0/sapi/apache2handler/ |
H A D | php_functions.c | 352 if ((p = strchr(s, '.'))) { in PHP_FUNCTION() 379 if ((p = strchr(s, '.'))) { in PHP_MINFO_FUNCTION()
|
/PHP-8.0/ext/session/ |
H A D | mod_files.c | 389 p = strchr(save_path, ';'); in PS_OPEN_FUNC() 393 p = strchr(p, ';'); in PS_OPEN_FUNC()
|
/PHP-8.0/ext/mbstring/libmbfl/filters/ |
H A D | mbfilter_htmlent.c | 264 …if (!strchr(html_entity_chars, c) || filter->status+1==html_enc_buffer_size || (c=='#' && filter->… in mbfl_filt_conv_html_dec()
|