Home
last modified time | relevance | path

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

/PHP-7.3/ext/mysqli/tests/
H A Dmysqli_stmt_get_result_types.phpt18 …i_stmt_get_result($link, $engine, $bind_type, $sql_type, $bind_value, $offset, $type_hint = null) {
83 if ($bind_res !== $bind_value && (!$type_hint || ($type_hint !== gettype($bind_res)))) {
86 gettype($bind_value), $bind_value, $type_hint,
H A Dmysqli_stmt_bind_result.phpt63 …_stmt_bind_result($link, $engine, $bind_type, $sql_type, $bind_value, $offset, $type_hint = null) {
128 if ($bind_res !== $bind_value && (!$type_hint || ($type_hint !== gettype($bind_res)))) {
131 gettype($bind_value), $bind_value, $type_hint,
/PHP-7.3/Zend/
H A Dzend_API.h102 #define ZEND_ARG_TYPE_INFO(pass_by_ref, name, type_hint, allow_null) { #name, ZEND_TYPE_ENCODE(type… argument
104 …ZEND_ARG_VARIADIC_TYPE_INFO(pass_by_ref, name, type_hint, allow_null) { #name, ZEND_TYPE_ENCODE(ty… argument
H A Dzend_execute.c833 static zend_bool zend_verify_weak_scalar_type_hint(zend_uchar type_hint, zval *arg) in zend_verify_weak_scalar_type_hint() argument
835 switch (type_hint) { in zend_verify_weak_scalar_type_hint()
880 static zend_bool zend_verify_scalar_type_hint(zend_uchar type_hint, zval *arg, zend_bool strict) in zend_verify_scalar_type_hint() argument
884 if (type_hint != IS_DOUBLE || Z_TYPE_P(arg) != IS_LONG) { in zend_verify_scalar_type_hint()
891 return zend_verify_weak_scalar_type_hint(type_hint, arg); in zend_verify_scalar_type_hint()
/PHP-7.3/ext/opcache/Optimizer/
H A Dzend_inference.c2272 zend_uchar type_hint = ZEND_TYPE_CODE(arg_info->type); in zend_fetch_arg_info() local
2274 if (type_hint == IS_VOID) { in zend_fetch_arg_info()
2276 } else if (type_hint == IS_CALLABLE) { in zend_fetch_arg_info()
2278 } else if (type_hint == IS_ITERABLE) { in zend_fetch_arg_info()
2280 } else if (type_hint == IS_ARRAY) { in zend_fetch_arg_info()
2282 } else if (type_hint == _IS_BOOL) { in zend_fetch_arg_info()
2285 ZEND_ASSERT(type_hint < IS_REFERENCE); in zend_fetch_arg_info()
2286 tmp |= 1 << type_hint; in zend_fetch_arg_info()
2966 !op_array->arg_info[opline->op1.num-1].type_hint) { in zend_update_type_info()

Completed in 36 milliseconds