php-src/Zend/tests/bug52484_2.phpt
Nikita Popov c9f27ee422 Display EngineExceptions like ordinary exceptions
TypeException stays as-is for now because it uses messages that are
incompatible with the way exception messages are displayed.

closure_038.phpt and a few others now show that we're generating
too many exceptions for compound operations on undefined properties
-- this needs to be fixed in a followup.
2015-05-15 23:40:32 +02:00

24 lines
401 B
PHP

--TEST--
Bug #52484.2 (__set() ignores setting properties with empty names)
--FILE--
<?php
class A {
function __set($prop, $val) {
$this->$prop = $val;
}
}
$a = new A();
$prop = null;
$a->$prop = 2;
?>
--EXPECTF--
Fatal error: Uncaught exception 'EngineException' with message 'Cannot access empty property' in %s:%d
Stack trace:
#0 %s(%d): A->__set('', 2)
#1 {main}
thrown in %s on line %d