Home
last modified time | relevance | path

Searched refs:keys (Results 226 – 250 of 301) sorted by relevance

12345678910>>...13

/PHP-5.3/ext/standard/tests/array/
H A Dkey_variation2.phpt11 * Pass arrays where keys are different data types as $array_arg to key() to test behaviour
H A Darray_rand_variation3.phpt6 * Description: Return key/keys for random entry/entries in the array
H A Darray_rand_variation5.phpt6 * Description: Return key/keys for random entry/entries in the array
H A Drsort_basic.phpt19 // array with default keys containing unsorted numeric values
H A Darray_filter_variation3.phpt36 …ull => 'null', 5.2 => "float", true => 1, "" => 'empty'), // associative array with different keys
H A Darray_flip_variation4.phpt2 … array_flip() function : usage variations - 'input' argument with different invalid values for keys
H A Darray_walk_basic2.phpt35 * Description : prints the array values with keys
H A Darray_walk_recursive_basic2.phpt35 * Description : prints the array values with keys
H A Dksort_variation3.phpt28 // mixed value array with different types of keys
H A Darray_diff_assoc_variation5.phpt7 * in any of the others arguments but do additional checks whether the keys are equal
H A Drsort_variation9.phpt39 // to test the new keys for the elements in the sorted array
H A Dkrsort_variation3.phpt28 // mixed value array with different types of keys
H A Darray_change_key_case_variation2.phpt6 * Description: Retuns an array with all string keys lowercased [or uppercased]
H A Dksort_variation9.phpt2 Test ksort() function : usage variations - sorting arrays with/without keys
H A Darray_rand_variation2.phpt6 * Description: Return key/keys for random entry/entries in the array
H A Darray_change_key_case_variation1.phpt6 * Description: Retuns an array with all string keys lowercased [or uppercased]
H A Darray_diff_assoc_variation1.phpt7 * in any of the others arguments but do additional checks whether the keys are equal
H A Darray_diff_assoc_variation2.phpt7 * in any of the others arguments but do additional checks whether the keys are equal
H A Darray_rand_variation1.phpt6 * Description: Return key/keys for random entry/entries in the array
H A Darray_udiff_assoc_variation1.phpt6 …esent in any of the others arguments but do additional checks whether the keys are equal. Keys are…
H A Darray_udiff_assoc_variation2.phpt6 …esent in any of the others arguments but do additional checks whether the keys are equal. Keys are…
/PHP-5.3/win32/build/
H A Dconfutils.js1621 var keys = (new VBArray(configure_hdr.Keys())).toArray();
1629 for (i in keys) {
1630 item = configure_hdr.Item(keys[i]);
1658 outfile.WriteLine("#define " + keys[i] + " " + pieces);
1720 var keys = (new VBArray(configure_subst.Keys())).toArray();
1723 for (i in keys) {
1727 MF.WriteLine(keys[i] + "=" +
1729 configure_subst.Item(keys[i]) + " "
/PHP-5.3/ext/standard/tests/file/
H A Dstat_basic-win32.phpt44 // numeric and named keys, compare them to see they are same
/PHP-5.3/ext/spl/internal/
H A Dregexiterator.inc42 * elemnts or keys are strings.
/PHP-5.3/ext/standard/
H A Darray.c1577 zval *keys, *val, **entry; in PHP_FUNCTION() local
1580 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "az", &keys, &val) == FAILURE) { in PHP_FUNCTION()
1585 array_init_size(return_value, zend_hash_num_elements(Z_ARRVAL_P(keys))); in PHP_FUNCTION()
1587 zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(keys), &pos); in PHP_FUNCTION()
1588 while (zend_hash_get_current_data_ex(Z_ARRVAL_P(keys), (void **)&entry, &pos) == SUCCESS) { in PHP_FUNCTION()
1611 zend_hash_move_forward_ex(Z_ARRVAL_P(keys), &pos); in PHP_FUNCTION()
4470 zval *values, *keys; in PHP_FUNCTION() local
4475 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "aa", &keys, &values) == FAILURE) { in PHP_FUNCTION()
4479 num_keys = zend_hash_num_elements(Z_ARRVAL_P(keys)); in PHP_FUNCTION()
4494 zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(keys), &pos_keys); in PHP_FUNCTION()
[all …]

Completed in 66 milliseconds

12345678910>>...13