mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
First pass at moving `Zend/tests/bug*` tests to existing sub directories Work towards GH-15631
18 lines
340 B
PHP
18 lines
340 B
PHP
--TEST--
|
|
Bug #75420 (Crash when modifying property name in __isset for BP_VAR_IS)
|
|
--FILE--
|
|
<?php
|
|
|
|
class Test {
|
|
public function __isset($x) { $GLOBALS["name"] = 24; return true; }
|
|
public function __get($x) { var_dump($x); return 42; }
|
|
}
|
|
|
|
$obj = new Test;
|
|
$name = "foo";
|
|
var_dump($obj->$name ?? 12);
|
|
?>
|
|
--EXPECT--
|
|
string(3) "foo"
|
|
int(42)
|