Searched defs:preserve_keys (Results 1 - 1 of 1) sorted by relevance
| /PHP_TRUNK/ext/standard/ |
| H A D | array.c | 2125 /* {{{ proto array array_slice(array input, int offset [, int length [, bool preserve_keys]]) 2134 zend_bool preserve_keys = 0; /* Whether to preserve keys while copying to the new array or not */ local 2142 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "al|Zb", &input, &offset, &z_length, &preserve_keys) == FAILURE) { 2198 if (preserve_keys) { 2630 zend_bool preserve_keys = 0; /* whether to preserve keys */ local 2633 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "a|b", &input, &preserve_keys) == FAILURE) { 2650 if (preserve_keys) { 4437 /* {{{ proto array array_chunk(array input, int size [, bool preserve_keys]) 4446 zend_bool preserve_keys = 0; local 4452 if (zend_parse_parameters(argc TSRMLS_CC, "al|b", &input, &size, &preserve_keys) [all...] |
Completed in 11 milliseconds