Searched defs:keys (Results 1 - 2 of 2) sorted by relevance
| /PHP_5_4/ext/standard/ |
| H A D | array.c | 773 Sort an array by keys using a user-defined comparison function */ 1579 /* {{{ proto array array_fill_keys(array keys, mixed val) 1580 Create an array using the elements of the first parameter as keys each initialized to val */ 1583 zval *keys, *val, **entry; local 1586 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "az", &keys, &val) == FAILURE) { 1591 array_init_size(return_value, zend_hash_num_elements(Z_ARRVAL_P(keys))); 1593 zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(keys), &pos); 1594 while (zend_hash_get_current_data_ex(Z_ARRVAL_P(keys), (void **)&entry, &pos) == SUCCESS) { 1617 zend_hash_move_forward_ex(Z_ARRVAL_P(keys), &pos); 2169 zend_bool preserve_keys = 0; /* Whether to preserve keys whil 4481 zval *values, *keys; local [all...] |
| /PHP_5_4/win32/ |
| H A D | registry.c | 62 DWORD keys, values, max_key, max_name, max_value; local 66 if (RegQueryInfoKey(key, NULL, NULL, NULL, &keys, &max_key, NULL, &values, &max_name, &max_value, NULL, NULL) == ERROR_SUCCESS) { 128 if (keys) { 136 for (i = 0; i < keys; i++) {
|
Completed in 7 milliseconds