Home
last modified time | relevance | path

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

/PHP-7.0/Zend/
H A Dzend_constants.c318 zval *ret_constant = NULL; in zend_get_constant_ex() local
354 ret_constant = zend_hash_find(&ce->constants_table, constant_name); in zend_get_constant_ex()
355 if (ret_constant == NULL) { in zend_get_constant_ex()
359 } else if (Z_ISREF_P(ret_constant)) { in zend_get_constant_ex()
360 ret_constant = Z_REFVAL_P(ret_constant); in zend_get_constant_ex()
367 if (ret_constant && Z_CONSTANT_P(ret_constant)) { in zend_get_constant_ex()
368 if (UNEXPECTED(zval_update_constant_ex(ret_constant, 1, ce) != SUCCESS)) { in zend_get_constant_ex()
372 return ret_constant; in zend_get_constant_ex()

Completed in 5 milliseconds