Home
last modified time | relevance | path

Searched refs:find_hash (Results 1 – 1 of 1) sorted by relevance

/PHP-7.4/ext/standard/
H A Dbasic_functions.c5999 zval hash, *find_hash; local
6008 if ((find_hash = zend_hash_index_find(Z_ARRVAL_P(arr), key)) == NULL) {
6010 find_hash = zend_hash_index_add_new(Z_ARRVAL_P(arr), key, &hash);
6013 if ((find_hash = zend_hash_find(Z_ARRVAL_P(arr), Z_STR_P(arg1))) == NULL) {
6015 find_hash = zend_hash_add_new(Z_ARRVAL_P(arr), Z_STR_P(arg1), &hash);
6019 if (Z_TYPE_P(find_hash) != IS_ARRAY) {
6020 zval_ptr_dtor_nogc(find_hash);
6021 array_init(find_hash);
6026 add_next_index_zval(find_hash, arg2);
6028 array_set_zval_key(Z_ARRVAL_P(find_hash), arg3, arg2);

Completed in 18 milliseconds