mirror of
https://github.com/php/php-src.git
synced 2024-12-02 06:13:40 +08:00
32 lines
407 B
PHP
32 lines
407 B
PHP
--TEST--
|
|
Bug #36825 (Exceptions thrown in ArrayObject::offsetGet cause segfault)
|
|
--FILE--
|
|
<?php
|
|
|
|
class foo extends ArrayObject
|
|
{
|
|
public function offsetGet($key)
|
|
{
|
|
echo __METHOD__ . "($key)\n";
|
|
throw new Exception("hi");
|
|
}
|
|
}
|
|
|
|
$test = new foo();
|
|
|
|
try
|
|
{
|
|
var_dump($test['bar']);
|
|
}
|
|
catch (Exception $e)
|
|
{
|
|
echo "got exception\n";
|
|
}
|
|
|
|
?>
|
|
===DONE===
|
|
--EXPECT--
|
|
foo::offsetGet(bar)
|
|
got exception
|
|
===DONE===
|