Home
last modified time | relevance | path

Searched refs:ref (Results 26 – 50 of 218) sorted by relevance

123456789

/PHP-7.1/ext/spl/tests/
H A Dfixedarray_001.phpt29 $ref = "value4";
30 $ref2 =&$ref;
31 $a[4] = $ref;
32 $ref = "value5";
/PHP-7.1/ext/reflection/tests/
H A Dbug63399.phpt25 $ref = new ReflectionClass('MyClass');
27 print_r($ref->getTraitAliases());
28 print_r($ref->getTraits());
H A Dbug70960.phpt6 $ref = new ReflectionFunction('array_unique');
7 var_dump(count($ref->getParameters()));
H A Dbug31651.phpt11 $ref = new ReflectionClass('Test');
13 print_r($ref->getDefaultProperties());
H A Dbug49719.phpt15 $ref = new ReflectionClass($b);
19 var_dump($ref->hasProperty('a'));
20 var_dump($ref->getProperty('a'));
/PHP-7.1/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 Dbug70117.phpt13 $a = array("ref");
21 string(3) "ref"
H A Dbug68262.phpt14 $ref =& $first->p;
15 unset($ref);
/PHP-7.1/tests/classes/
H A Dstatic_properties_003.phpt17 $ref = 'ref';
18 $c->x =& $ref;
26 //$c->y =& $ref; // Fatal error, tested in static_properties_003_error4.phpt
44 %unicode|string%(3) "ref"
/PHP-7.1/ext/ldap/tests/
H A Dldap_next_reference_basic.phpt17 "ref" => "cn=userA,$base",
22 "ref" => "cn=userB,$base",
26 $ref = ldap_first_reference($link, $result);
27 var_dump($ref2 = ldap_next_reference($link, $ref));
/PHP-7.1/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-7.1/ext/spl/internal/
H A Drecursiveregexiterator.inc51 if (empty($this->ref))
53 $this->ref = new ReflectionClass($this);
55 return $this->ref->newInstance($this->getInnerIterator()->getChildren());
58 private $ref;
/PHP-7.1/tests/lang/
H A DforeachLoopObjects.006.phpt23 $ref = &$obj;
28 $ref=$obj2;
40 $ref = &$obj;
45 $ref=$a;
57 $ref = &$a;
62 $ref=$obj;
H A DpassByReference_006.phpt35 echo "\n ---- Pass uninitialised array & object by ref: function call ---\n";
40 echo "\n ---- Pass uninitialised arrays & objects by ref: static method call ---\n";
45 echo "\n\n---- Pass uninitialised arrays & objects by ref: constructor ---\n";
50 echo "\n ---- Pass uninitialised arrays & objects by ref: instance method call ---\n";
57 ---- Pass uninitialised array & object by ref: function call ---
91 ---- Pass uninitialised arrays & objects by ref: static method call ---
128 ---- Pass uninitialised arrays & objects by ref: constructor ---
162 ---- Pass uninitialised arrays & objects by ref: instance method call ---
H A DpassByReference_004.phpt6 function foo(&$ref)
8 var_dump($ref);
H A DreturnByReference.003.phpt24 …2. Trying to assign by reference the return value of a function that returns a constant by ref:\n";
31 echo "\n---> 3. Trying to assign by reference the return value of a function that returns by ref:\n…
46 ---> 2. Trying to assign by reference the return value of a function that returns a constant by ref:
52 ---> 3. Trying to assign by reference the return value of a function that returns by ref:
H A DreturnByReference.004.phpt26 …2. Trying to assign by reference the return value of a function that returns a constant by ref:\n";
33 echo "\n---> 3. Trying to assign by reference the return value of a function that returns by ref:\n…
48 ---> 2. Trying to assign by reference the return value of a function that returns a constant by ref:
54 ---> 3. Trying to assign by reference the return value of a function that returns by ref:
H A DreturnByReference.005.phpt27 …2. Trying to assign by reference the return value of a function that returns a constant by ref:\n";
34 echo "\n---> 3. Trying to assign by reference the return value of a function that returns by ref:\n…
49 ---> 2. Trying to assign by reference the return value of a function that returns a constant by ref:
55 ---> 3. Trying to assign by reference the return value of a function that returns by ref:
/PHP-7.1/scripts/dev/
H A Dsearch_underscores.php49 $ref = new ReflectionClass($c); variable
50 if (!($ext = $ref->getExtensionName())) {;
51 $ext = $ref->isInternal() ? "<internal>" : "<user>";
/PHP-7.1/ext/gd/tests/
H A Dbug74031.phpt10 $ref = new ReflectionFunction('imagepng');
11 var_dump(count($ref->getParameters()));
/PHP-7.1/ext/spl/examples/
H A Drecursivedualiterator.inc19 private $ref;
45 if (empty($this->ref))
47 $this->ref = new ReflectionClass($this);
49 return $this->ref->newInstance(

Completed in 30 milliseconds

123456789