mirror of
https://github.com/php/pecl-php-operator.git
synced 2026-03-24 07:02:16 +01:00
class Foo {
public $val;
public function __assign($val) {
$this->val = $val;
}
}
$f = new Foo;
$f = 123;
var_dump($f->val); // int(123)