Description
The following code:
<?php
class C {
public function __unset($name) {
global $c;
$c = null;
var_dump($this);
}
}
$c = new C;
unset($c->prop);
Resulted in this output:
But I expected this output instead:
Originally reported by @cnwangjihe.
PHP Version
Operating System
No response
Description
The following code:
Resulted in this output:
But I expected this output instead:
Originally reported by @cnwangjihe.
PHP Version
Operating System
No response