Searched defs:preserve_keys (Results 1 - 1 of 1) sorted by relevance
| /PHP_5_4/ext/standard/ |
| H A D | array.c | 2160 /* {{{ proto array array_slice(array input, int offset [, int length [, bool preserve_keys]]) 2169 zend_bool preserve_keys = 0; /* Whether to preserve keys while copying to the new array or not */ local 2177 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "al|Zb", &input, &offset, &z_length, &preserve_keys) == FAILURE) { 2233 if (preserve_keys) { 2585 zend_bool preserve_keys = 0; /* whether to preserve keys */ local 2588 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "a|b", &input, &preserve_keys) == FAILURE) { 2605 if (preserve_keys) { 4403 /* {{{ proto array array_chunk(array input, int size [, bool preserve_keys]) 4412 zend_bool preserve_keys = 0; local 4418 if (zend_parse_parameters(argc TSRMLS_CC, "al|b", &input, &size, &preserve_keys) [all...] |
Completed in 11 milliseconds