mirror of
https://github.com/php/php-src.git
synced 2024-12-13 20:05:26 +08:00
19 lines
244 B
PHP
19 lines
244 B
PHP
--TEST--
|
|
Bug #68370 "unset($this)" can make the program crash
|
|
--FILE--
|
|
<?php
|
|
class C {
|
|
public function test() {
|
|
unset($this);
|
|
return get_defined_vars();
|
|
}
|
|
}
|
|
$c = new C();
|
|
$x = $c->test();
|
|
print_r($x);
|
|
unset($c, $x);
|
|
--EXPECTF--
|
|
Array
|
|
(
|
|
)
|