1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00
Files
archived-php-src/Zend/tests/dereference/dereference_003.phpt
DanielEScherzer 8475d5fea1 Zend/tests: organize some tests with subdirectories (#15638)
Move some low-hanging fruit, creating new directories for the tests for

* access modifiers
* `class_alias()`
* constant expressions
* constructor property promotion
* `__debugInfo()`
* dereferencing
* first class callable syntax

Additionally, move some tests into the existing subdirectory for
closure-related tests

Work towards GH-15631
2024-10-13 14:21:07 +01:00

47 lines
719 B
PHP

--TEST--
Testing array dereference on method calls
--FILE--
<?php
error_reporting(E_ALL);
class foo {
public $x = 2;
public function a() {
$x = array();
$x[] = new foo;
return $x;
}
public function b() {
return array(1.2, array(new self));
}
public function c() {
$a = array();
$b = &$a;
$b[] = true;
return $a;
}
public function d() {
return $this->b();
}
}
$foo = new foo;
var_dump($foo->a()[0]->x);
var_dump($foo->a()[0]);
var_dump($foo->b()[1][0]->a()[0]->x);
var_dump($foo->c()[0]);
var_dump($foo->d()[0]);
?>
--EXPECTF--
int(2)
object(foo)#%d (1) {
["x"]=>
int(2)
}
int(2)
bool(true)
float(1.2)