1
0
mirror of https://github.com/php/php-src.git synced 2026-04-14 11:32:11 +02:00
Files
archived-php-src/tests/classes/__set__get_005.phpt
Fabien Villepinte a555cc0b3d Clean DONE tags from tests
Remove most of the `===DONE===` tags and its variations.
Keep `===DONE===` if the test output otherwise becomes empty.

Closes GH-4872.
2019-11-07 21:31:47 +01:00

65 lines
883 B
PHP

--TEST--
ZE2 __set() and __get()
--FILE--
<?php
class Test
{
protected $x;
function __get($name) {
echo __METHOD__ . "\n";
if (isset($this->x[$name])) {
return $this->x[$name];
}
else
{
return NULL;
}
}
function __set($name, $val) {
echo __METHOD__ . "\n";
$this->x[$name] = $val;
}
}
class AutoGen
{
protected $x;
function __get($name) {
echo __METHOD__ . "\n";
if (!isset($this->x[$name])) {
$this->x[$name] = new Test();
}
return $this->x[$name];
}
function __set($name, $val) {
echo __METHOD__ . "\n";
$this->x[$name] = $val;
}
}
$foo = new AutoGen();
$foo->bar->baz = "Check";
var_dump($foo->bar);
var_dump($foo->bar->baz);
?>
--EXPECTF--
AutoGen::__get
Test::__set
AutoGen::__get
object(Test)#%d (1) {
["x":protected]=>
array(1) {
["baz"]=>
string(5) "Check"
}
}
AutoGen::__get
Test::__get
string(5) "Check"