mirror of
https://github.com/php/php-src.git
synced 2026-04-27 10:16:41 +02:00
75a678a7e3
Co-authored-by: Nikita Popov <nikita.ppv@gmail.com>
38 lines
1.1 KiB
PHP
38 lines
1.1 KiB
PHP
--TEST--
|
|
testing reusing anons that implement an interface
|
|
--FILE--
|
|
<?php
|
|
class Outer {
|
|
protected $data;
|
|
|
|
public function __construct(&$data) {
|
|
/* array access will be implemented by the time we get to here */
|
|
$this->data = &$data;
|
|
}
|
|
|
|
public function getArrayAccess() {
|
|
/* create a child object implementing array access */
|
|
/* this grants you access to protected methods and members */
|
|
return new class($this->data) implements ArrayAccess {
|
|
public function offsetGet($offset): mixed { return $this->data[$offset]; }
|
|
public function offsetSet($offset, $data): void { $this->data[$offset] = $data; }
|
|
public function offsetUnset($offset): void { unset($this->data[$offset]); }
|
|
public function offsetExists($offset): bool { return isset($this->data[$offset]); }
|
|
};
|
|
}
|
|
}
|
|
|
|
$data = array(
|
|
rand(1, 100),
|
|
rand(2, 200)
|
|
);
|
|
|
|
$outer = new Outer($data);
|
|
$proxy = $outer->getArrayAccess();
|
|
|
|
/* null because no inheritance, so no access to protected member */
|
|
var_dump(@$outer->getArrayAccess()[0]);
|
|
?>
|
|
--EXPECT--
|
|
NULL
|