Home
last modified time | relevance | path

Searched refs:separator (Results 1 – 25 of 39) sorted by relevance

12

/PHP-7.4/ext/filter/tests/
H A D055.phpt9 array("01-23-45-67-89-ab", array("options" => array("separator" => "-"))),
10 array("01-23-45-67-89-ab", array("options" => array("separator" => "."))),
11 array("01-23-45-67-89-ab", array("options" => array("separator" => ":"))),
20 array("01-23-45-67-89-ab", array("options" => array("separator" => "--"))),
21 array("01-23-45-67-89-ab", array("options" => array("separator" => ""))),
H A Dbug51368.phpt22 Warning: filter_var(): thousand separator must be at least one char in %s on line %d
H A D031.phpt56 Warning: filter_var(): decimal separator must be one char in %s on line %d
/PHP-7.4/ext/pcre/pcre2lib/
H A Dpcre2_convert.c433 PCRE2_UCHAR separator, BOOL with_escape) in convert_glob_print_separator() argument
438 convert_glob_write(out, separator); in convert_glob_print_separator()
452 PCRE2_UCHAR separator, BOOL with_escape) in convert_glob_print_wildcard() argument
458 convert_glob_print_separator(out, separator, with_escape); in convert_glob_print_wildcard()
621 out->out_str[len] = (uint8_t) separator; in convert_glob_parse_range()
714 if (prev_c < separator && separator < c) separator_seen = TRUE; in convert_glob_parse_range()
737 if (c == separator) separator_seen = TRUE; in convert_glob_parse_range()
794 PCRE2_UCHAR separator = ccontext->glob_separator; in convert_glob() local
808 if (utf && (separator >= 128 || escape >= 128)) in convert_glob()
882 if (*pattern != separator) continue; in convert_glob()
[all …]
H A Dpcre2_context.c470 pcre2_set_glob_separator(pcre2_convert_context *ccontext, uint32_t separator) in pcre2_set_glob_separator() argument
472 if (separator != CHAR_SLASH && separator != CHAR_BACKSLASH && in pcre2_set_glob_separator()
473 separator != CHAR_DOT) return PCRE2_ERROR_BADDATA; in pcre2_set_glob_separator()
474 ccontext->glob_separator = separator; in pcre2_set_glob_separator()
/PHP-7.4/ext/mbstring/
H A Dmb_gpc.c54 char *res = NULL, *separator=NULL; in ZEND_EXTERN_MODULE_GLOBALS() local
120 separator = (char *) estrdup(PG(arg_separator).input); in ZEND_EXTERN_MODULE_GLOBALS()
123 separator = ";\0"; in ZEND_EXTERN_MODULE_GLOBALS()
143 info.separator = separator; in ZEND_EXTERN_MODULE_GLOBALS()
174 efree(separator); in ZEND_EXTERN_MODULE_GLOBALS()
210 for (s2=info->separator; *s2 != '\0'; s2++) { in _php_mb_encoding_handler_ex()
224 var = php_strtok_r(res, info->separator, &strtok_buf); in _php_mb_encoding_handler_ex()
244 var = php_strtok_r(NULL, info->separator, &strtok_buf); in _php_mb_encoding_handler_ex()
361 info.separator = "&"; in SAPI_POST_HANDLER_FUNC()
H A Dmb_gpc.h31 const char *separator; member
/PHP-7.4/ext/standard/tests/strings/
H A Dexplode_variation6.phpt15 echo "\n-- positive limit with null separator --\n";
18 echo "\n-- negative limit (since PHP 5.1) with null separator --\n";
46 -- positive limit with null separator --
50 -- negative limit (since PHP 5.1) with null separator --
/PHP-7.4/ext/standard/tests/math/
H A Dnumber_format_multichar.phpt2 Test number_format() - multiple character separator support
24 echo "\n number_format tests.....multiple character thousand separator\n";
51 number_format tests.....multiple character thousand separator
H A Dbug28228.phpt2 Bug #28228 (number_format() does not allow empty decimal separator)
/PHP-7.4/sapi/phpdbg/tests/
H A Dbug73794.phpt2 Bug #73794 (Crash (out of memory) when using run and # command separator)
/PHP-7.4/Zend/tests/
H A Dns_096.phpt2 Group use declaration list should not contain leading separator
H A Dnumeric_literal_separator_001.phpt2 Valid use of numeric literal separator
/PHP-7.4/ext/pdo_pgsql/tests/
H A Dcopy_to.phpt38 echo "Testing pgsqlCopyToArray() with different field separator and not null indicator\n";
55 echo "Testing pgsqlCopyToFile() with different field separator and not null indicator\n";
94 Testing pgsqlCopyToArray() with different field separator and not null indicator
125 Testing pgsqlCopyToFile() with different field separator and not null indicator
H A Dcopy_from.phpt49 echo "Testing pgsqlCopyFromArray() with different field separator and not null indicator\n";
86 echo "Testing pgsqlCopyFromFile() with different field separator and not null indicator\n";
173 Testing pgsqlCopyFromArray() with different field separator and not null indicator
307 Testing pgsqlCopyFromFile() with different field separator and not null indicator
/PHP-7.4/ext/standard/tests/ini_info/
H A Dphp_ini_scanned_files.phpt13 // Env value without path separator overrides any config option
/PHP-7.4/ext/date/tests/
H A Dgmdate_variation10.phpt29 echo "\n-- Testing gmdate() function with Difference to GMT in hours using colon as separator forma…
58 -- Testing gmdate() function with Difference to GMT in hours using colon as separator format --
/PHP-7.4/ext/standard/tests/file/
H A Dtempnam_variation3-win32.phpt41 /* prefix with path separator of a non existing directory*/
57 /* prefix with path separator of a non existing directory*/
H A Dreadfile_variation10.phpt35 /* prefix with path separator of a non existing directory*/
H A Dfile_get_contents_variation8-win32.phpt35 /* prefix with path separator of a non existing directory*/
H A Dfile_get_contents_variation8.phpt34 /* prefix with path separator of a non existing directory*/
H A Dreadfile_variation10-win32.phpt34 /* prefix with path separator of a non existing directory*/
H A Dfile_put_contents_variation8-win32.phpt33 /* prefix with path separator of a non existing directory*/
/PHP-7.4/ext/filter/
H A Dlogical_filters.c954 char separator; in php_filter_validate_mac() local
972 separator = '.'; in php_filter_validate_mac()
977 separator = '-'; in php_filter_validate_mac()
982 separator = ':'; in php_filter_validate_mac()
987 if (exp_separator_set && separator != exp_separator[0]) { in php_filter_validate_mac()
998 if (i < tokens - 1 && input[offset + length] != separator) { in php_filter_validate_mac()
/PHP-7.4/main/
H A Dphp_variables.c420 char *res = NULL, *var, *val, *separator = NULL; in SAPI_TREAT_DATA_FUNC() local
486 separator = PG(arg_separator).input; in SAPI_TREAT_DATA_FUNC()
489 separator = ";\0"; in SAPI_TREAT_DATA_FUNC()
493 var = php_strtok_r(res, separator, &strtok_buf); in SAPI_TREAT_DATA_FUNC()
539 var = php_strtok_r(NULL, separator, &strtok_buf); in SAPI_TREAT_DATA_FUNC()

Completed in 74 milliseconds

12