Searched refs:extract_type (Results 1 – 5 of 5) sorted by relevance
/PHP-7.1/ext/intl/doc/ |
H A D | grapheme_api.php | 122 …* @param [int] $extract_type one of GRAPHEME_EXTR_COUNT (default), GRAPHEME_EXTR_MAXBYTES, or GRA… 128 …function grapheme_extract($haystack, $size, $extract_type = GRAPHEME_EXTR_COUNT, $start = 0, &$nex… argument
|
/PHP-7.1/ext/intl/grapheme/ |
H A D | grapheme_string.c | 782 zend_long extract_type = GRAPHEME_EXTRACT_TYPE_COUNT; in PHP_FUNCTION() local 789 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "sl|llz", &str, &str_len, &size, &extract_type, &lstart… in PHP_FUNCTION() 813 if ( extract_type < GRAPHEME_EXTRACT_TYPE_MIN || extract_type > GRAPHEME_EXTRACT_TYPE_MAX ) { in PHP_FUNCTION() 889 …ret_pos = (*grapheme_extract_iters[extract_type])(bi, size, (unsigned char *)pstr, (int32_t)str_le… in PHP_FUNCTION()
|
/PHP-7.1/ext/standard/ |
H A D | array.c | 1724 zend_long extract_type = EXTR_OVERWRITE; local 1737 Z_PARAM_LONG(extract_type) 1741 extract_refs = (extract_type & EXTR_REFS); 1745 extract_type &= 0xff; 1747 if (extract_type < EXTR_OVERWRITE || extract_type > EXTR_IF_EXISTS) { 1752 if (extract_type > EXTR_SKIP && extract_type <= EXTR_PREFIX_IF_EXISTS && ZEND_NUM_ARGS() < 3) { 1789 } else if (extract_type == EXTR_PREFIX_ALL || extract_type == EXTR_PREFIX_INVALID) { 1797 switch (extract_type) {
|
H A D | basic_functions.c | 335 ZEND_ARG_INFO(0, extract_type)
|
/PHP-7.1/ext/intl/tests/ |
H A D | grapheme.phpt | 550 …$res_str .= "\n" . 'function grapheme_extract($haystack, $size, $extract_type = GRAPHEME_EXTR_COUN… 641 …$res_str .= "\n" . 'function grapheme_extract($haystack, $size, $extract_type = GRAPHEME_EXTR_MAXB… 699 …$res_str .= "\n" . 'function grapheme_extract($haystack, $size, $extract_type = GRAPHEME_EXTR_MAXC… 1099 function grapheme_extract($haystack, $size, $extract_type = GRAPHEME_EXTR_COUNT, $start = 0[, $next… 1147 function grapheme_extract($haystack, $size, $extract_type = GRAPHEME_EXTR_MAXBYTES, $start = 0) 1178 function grapheme_extract($haystack, $size, $extract_type = GRAPHEME_EXTR_MAXCHARS, $start = 0)
|
Completed in 49 milliseconds