Searched refs:extract_type (Results 1 - 4 of 4) sorted by relevance
| /PHP_5_4/ext/intl/doc/ |
| H A D | grapheme_api.php | 7 * grapheme_extract extract_type 121 * @param int $size maximum number of units - based on the $extract_type - to return 122 * @param [int] $extract_type one of GRAPHEME_EXTR_COUNT (default), GRAPHEME_EXTR_MAXBYTES, or GRAPHEME_EXTR_MAXCHARS 128 function grapheme_extract($haystack, $size, $extract_type = GRAPHEME_EXTR_COUNT, $start = 0, &$next) {}
|
| /PHP_5_4/ext/intl/grapheme/ |
| H A D | grapheme_string.c | 791 /* {{{ proto string grapheme_extract(string str, int size[, int extract_type[, int start[, int next]]]) 798 long size; /* maximum number of grapheme clusters, bytes, or characters (based on extract_type) to return */ 801 long extract_type = GRAPHEME_EXTRACT_TYPE_COUNT; local 808 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "sl|llz", (char **)&str, &str_len, &size, &extract_type, &lstart, &next) == FAILURE) { 830 if ( extract_type < GRAPHEME_EXTRACT_TYPE_MIN || extract_type > GRAPHEME_EXTRACT_TYPE_MAX ) { 915 ret_pos = (*grapheme_extract_iters[extract_type])(bi, size, pstr, str_len);
|
| /PHP_5_4/ext/standard/ |
| H A D | array.c | 1315 /* {{{ proto int extract(array var_array [, int extract_type [, string prefix]]) 1320 long extract_type = EXTR_OVERWRITE; local 1329 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "a|lz/", &var_array, &extract_type, &prefix) == FAILURE) { 1333 extract_refs = (extract_type & EXTR_REFS); 1334 extract_type &= 0xff; 1336 if (extract_type < EXTR_OVERWRITE || extract_type > EXTR_IF_EXISTS) { 1341 if (extract_type > EXTR_SKIP && extract_type <= EXTR_PREFIX_IF_EXISTS && ZEND_NUM_ARGS() < 3) { 1377 } else if (key_type == HASH_KEY_IS_LONG && (extract_type [all...] |
| H A D | basic_functions.c | 335 ZEND_ARG_INFO(0, extract_type)
|
Completed in 15 milliseconds