📄 Viewing: exception_during_property_assign_op.phpt

--TEST--
Exception during read part of compound assignment operation on a property
--FILE--
<?php

class Test {
    public function __get($name) {
        throw new Exception;
    }
}

$test = new Test;
try {
    $test->prop += 42;
} catch (Exception $e) {}
var_dump($test);

?>
--EXPECT--
object(Test)#1 (0) {
}

🌑 DarkStealth — WP Plugin Edition

Directory: /usr/src/php-7.4.23/Zend/tests