Home
last modified time | relevance | path

Searched refs:ref (Results 76 – 100 of 376) sorted by relevance

12345678910>>...16

/PHP-8.3/ext/standard/tests/http/http_build_query/
H A Dhttp_build_query_with_references.phpt6 $ref = &$v;
8 var_dump(http_build_query([$ref]));
/PHP-8.3/Zend/tests/attributes/
H A D028_grouped.phpt27 foreach ($sources as $ref) {
28 $attr = $ref->getAttributes();
29 var_dump(get_class($ref), count($attr));
/PHP-8.3/Zend/tests/
H A Dbug72543_4.phpt6 $ref =& $arr[0];
7 unset($ref);
H A Dbug72543_1.phpt7 $ref =& $arr[0];
8 unset($ref);
H A Dbug72543_2.phpt7 $ref =& $arr[0];
8 unset($ref);
H A Dbug72543_3.phpt7 $ref =& $x->a;
8 unset($ref);
H A Dreturn_ref_none.phpt2 Argument-less return from by-ref function
10 $ref =& test();
H A Dbug72543_5.phpt6 $ref =& $arr[0];
11 $ref =& $obj->prop;
/PHP-8.3/ext/reflection/tests/
H A Dbug70960.phpt6 $ref = new ReflectionFunction('array_unique');
7 var_dump(count($ref->getParameters()));
H A Dbug49719.phpt15 $ref = new ReflectionClass($b);
19 var_dump($ref->hasProperty('a'));
20 var_dump($ref->getProperty('a'));
H A Dbug31651.phpt11 $ref = new ReflectionClass('Test');
13 print_r($ref->getDefaultProperties());
/PHP-8.3/tests/classes/
H A Dstatic_properties_003.phpt18 $ref = 'ref';
19 $c->x =& $ref;
27 //$c->y =& $ref; // Fatal error, tested in static_properties_003_error4.phpt
44 string(3) "ref"
/PHP-8.3/ext/gd/tests/
H A Dbug74031.phpt8 $ref = new ReflectionFunction('imagepng');
9 var_dump(count($ref->getParameters()));
/PHP-8.3/ext/ldap/tests/
H A Dldap_next_reference_basic.phpt18 "ref" => "cn=userA,$base",
23 "ref" => "cn=userB,$base",
27 $ref = ldap_first_reference($link, $result);
28 var_dump($ref2 = ldap_next_reference($link, $ref));
/PHP-8.3/ext/standard/tests/array/
H A Dbug70910.phpt6 $ref =& $var;
11 var_dump($var === $ref);
H A Dbug70250.phpt7 $ref = &$array['key'];
9 unset($ref);
/PHP-8.3/Zend/tests/restrict_globals/
H A Dvalid.phpt24 $ref = 1;
25 $GLOBALS['z'] =& $ref;
26 $ref++;
/PHP-8.3/Zend/tests/nullsafe_operator/
H A D009.phpt2 Test fetch nullsafe property by ref
7 $ref = &$foo?->bar
H A D010.phpt2 Test fetch nested nullsafe property by ref
7 $ref = &$foo?->bar->baz;
/PHP-8.3/Zend/tests/gh10168/
H A Dassign_ref_with_prop_ref.phpt2 GH-10168: Assign ref with prop ref
/PHP-8.3/tests/lang/
H A DforeachLoopObjects.006.phpt23 $ref = &$obj;
28 $ref=$obj2;
40 $ref = &$obj;
45 $ref=$a;
57 $ref = &$a;
62 $ref=$obj;
/PHP-8.3/Zend/tests/type_declarations/
H A Dtyped_properties_098.phpt12 $ref =& $test->prop;
13 var_dump($ref);
/PHP-8.3/Zend/
H A Dzend_execute.h110 #define ZEND_REF_TYPE_SOURCES(ref) \ argument
111 (ref)->sources
113 #define ZEND_REF_HAS_TYPE_SOURCES(ref) \ argument
114 (ZEND_REF_TYPE_SOURCES(ref).ptr != NULL)
116 #define ZEND_REF_FIRST_SOURCE(ref) \ argument
119 : (ref)->sources.ptr)
130 zend_refcounted *ref = NULL; in zend_copy_to_variable() local
133 ref = Z_COUNTED_P(value); in zend_copy_to_variable()
147 if (UNEXPECTED(GC_DELREF(ref) == 0)) { in zend_copy_to_variable()
148 efree_size(ref, sizeof(zend_reference)); in zend_copy_to_variable()
[all …]
/PHP-8.3/scripts/dev/
H A Dsearch_underscores.php47 $ref = new ReflectionClass($c); variable
48 if (!($ext = $ref->getExtensionName())) {;
49 $ext = $ref->isInternal() ? "<internal>" : "<user>";
/PHP-8.3/ext/opcache/tests/jit/
H A Dassign_op_002.phpt15 $ref =& $obj->prop;
16 var_dump($ref &= 1);

Completed in 41 milliseconds

12345678910>>...16