Searched refs:extract_type (Results 1 – 5 of 5) sorted by relevance
/PHP-5.4/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-5.4/ext/intl/grapheme/ |
H A D | grapheme_string.c | 817 long extract_type = GRAPHEME_EXTRACT_TYPE_COUNT; in PHP_FUNCTION() local 824 …ZEND_NUM_ARGS() TSRMLS_CC, "sl|llz", (char **)&str, &str_len, &size, &extract_type, &lstart, &next… in PHP_FUNCTION() 846 if ( extract_type < GRAPHEME_EXTRACT_TYPE_MIN || extract_type > GRAPHEME_EXTRACT_TYPE_MAX ) { in PHP_FUNCTION() 931 ret_pos = (*grapheme_extract_iters[extract_type])(bi, size, pstr, str_len); in PHP_FUNCTION()
|
/PHP-5.4/ext/standard/ |
H A D | array.c | 1320 long extract_type = EXTR_OVERWRITE; in PHP_FUNCTION() local 1329 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "a|lz/", &var_array, &extract_type, &prefix) … in PHP_FUNCTION() 1333 extract_refs = (extract_type & EXTR_REFS); in PHP_FUNCTION() 1334 extract_type &= 0xff; in PHP_FUNCTION() 1336 if (extract_type < EXTR_OVERWRITE || extract_type > EXTR_IF_EXISTS) { in PHP_FUNCTION() 1341 if (extract_type > EXTR_SKIP && extract_type <= EXTR_PREFIX_IF_EXISTS && ZEND_NUM_ARGS() < 3) { in PHP_FUNCTION() 1377 …} else if (key_type == HASH_KEY_IS_LONG && (extract_type == EXTR_PREFIX_ALL || extract_type == EXT… in PHP_FUNCTION() 1389 switch (extract_type) { in PHP_FUNCTION()
|
H A D | basic_functions.c | 335 ZEND_ARG_INFO(0, extract_type)
|
/PHP-5.4/ext/intl/tests/ |
H A D | grapheme.phpt | 542 …$res_str .= "\n" . 'function grapheme_extract($haystack, $size, $extract_type = GRAPHEME_EXTR_COUN… 629 …$res_str .= "\n" . 'function grapheme_extract($haystack, $size, $extract_type = GRAPHEME_EXTR_MAXB… 687 …$res_str .= "\n" . 'function grapheme_extract($haystack, $size, $extract_type = GRAPHEME_EXTR_MAXC… 1080 function grapheme_extract($haystack, $size, $extract_type = GRAPHEME_EXTR_COUNT, $start = 0[, $next… 1124 function grapheme_extract($haystack, $size, $extract_type = GRAPHEME_EXTR_MAXBYTES, $start = 0) 1155 function grapheme_extract($haystack, $size, $extract_type = GRAPHEME_EXTR_MAXCHARS, $start = 0)
|
Completed in 58 milliseconds