Searched refs:is_ref (Results 1 – 9 of 9) sorted by relevance
/php-src/Zend/tests/array_unpack/ |
H A D | ref1.phpt | 7 $b = [&$a]; //array (0 => (refcount=2, is_ref=1)=1) 9 unset($a); //array (0 => (refcount=1, is_ref=1)=1) 11 var_dump([...$b]); //array (0 => (refcount=0, is_ref=0)=1)
|
/php-src/ext/standard/tests/array/ |
H A D | bug29493.phpt | 33 // is_ref($a) = true 55 // is_ref($a) = true 59 // is_ref($a) = true
|
/php-src/Zend/tests/ |
H A D | bug33282.phpt | 2 Bug #33282 (Re-assignment by reference does not clear the is_ref flag)
|
H A D | bug71336.phpt | 2 Bug #71336 (Wrong is_ref on properties as exposed via get_object_vars())
|
/php-src/Zend/ |
H A D | zend_API.h | 1102 if (is_ref || UNEXPECTED(Z_ISREF_P(_zv))) { \ 1124 if (is_ref || UNEXPECTED(Z_ISREF_P(_zv))) { \ 1146 if (is_ref || UNEXPECTED(Z_ISREF_P(_zv))) { \ 1168 if (is_ref || UNEXPECTED(Z_ISREF_P(_zv))) { \ 1190 if (is_ref || UNEXPECTED(Z_ISREF_P(_zv))) { \ 1212 if (is_ref || UNEXPECTED(Z_ISREF_P(_zv))) { \ 1234 if (is_ref || UNEXPECTED(Z_ISREF_P(_zv))) { \ 1256 if (is_ref || UNEXPECTED(Z_ISREF_P(_zv))) { \ 1300 if (is_ref || UNEXPECTED(Z_ISREF_P(_zv))) { \ 1322 if (is_ref || UNEXPECTED(Z_ISREF_P(_zv))) { \ [all …]
|
H A D | zend_API.c | 3597 …set_hash_symbol(zval *symbol, const char *name, size_t name_length, bool is_ref, int num_symbol_ta… in zend_set_hash_symbol() argument 3604 if (is_ref) { in zend_set_hash_symbol()
|
H A D | zend_compile.c | 7594 bool is_ref = (param_ast->attr & ZEND_PARAM_REF) != 0; in zend_compile_params() local 7723 uint32_t arg_info_flags = _ZEND_ARG_INFO_FLAGS(is_ref, is_variadic, /* is_tentative */ 0) in zend_compile_params() 7819 bool is_ref = (param_ast->attr & ZEND_PARAM_REF) != 0; in zend_compile_params() local 7835 is_ref ? ZEND_ASSIGN_OBJ_REF : ZEND_ASSIGN_OBJ, NULL, &name_node); in zend_compile_params()
|
/php-src/ext/mysqli/tests/bind_fetch/ |
H A D | bigint_types.phpt | 45 $c8 = 4567;// change this to test how mysqli/mysqlnd handles is_ref changing
|
/php-src/ext/standard/ |
H A D | var.c | 40 #define COMMON (is_ref ? "&" : "") 107 int is_ref = 0; in php_var_dump() local 221 is_ref = 1; in php_var_dump() 730 bool is_ref = Z_ISREF_P(var); in php_add_var_hash() local 734 if (is_ref) { in php_add_var_hash() 745 if (is_ref && Z_TYPE_P(Z_REFVAL_P(var)) == IS_OBJECT) { in php_add_var_hash() 756 if (is_ref && Z_LVAL_P(zv) != -1) { in php_add_var_hash()
|
Completed in 72 milliseconds