php-src/Zend/tests/property_hooks/backed_implicit_set.phpt

23 lines
274 B
Plaintext
Raw Normal View History

--TEST--
Backed property with implicit set
--FILE--
<?php
class C {
public $prop {
get {
echo __METHOD__, "\n";
return $this->prop;
}
}
}
$c = new C();
$c->prop = 42;
var_dump($c->prop);
?>
--EXPECT--
C::$prop::get
int(42)