1
0
mirror of https://github.com/php/php-src.git synced 2026-04-14 11:32:11 +02:00
Files
archived-php-src/Zend/tests/bug76667.phpt
2020-07-10 21:05:28 +02:00

39 lines
787 B
PHP

--TEST--
Bug #76667 (Segfault with divide-assign op and __get + __set)
--FILE--
<?php
class T {
public function __get($k)
{
return $undefined->$k;
}
public function __set($k, $v)
{
return $this->$v /= 0;
}
}
$x = new T;
$x->x = 1;
?>
--EXPECTF--
Warning: Undefined variable $undefined in %s on line %d
Warning: Attempt to read property "1" on null in %s on line %d
Warning: Division by zero in %s on line %d
Warning: Undefined variable $undefined in %s on line %d
Warning: Attempt to read property "NAN" on null in %s on line %d
Warning: Division by zero in %s on line %d
Warning: Undefined variable $undefined in %s on line %d
Warning: Attempt to read property "NAN" on null in %s on line %d
Warning: Division by zero in %s on line %d