1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 16:22:37 +01:00
Files
archived-php-src/ext/json/tests/bug73113.phpt
2021-05-27 10:47:15 +02:00

24 lines
478 B
PHP

--TEST--
Bug #73113 (Segfault with throwing JsonSerializable)
Also test that the custom exception is not wrapped by ext/json
--FILE--
<?php
class JsonSerializableObject implements \JsonSerializable
{
public function jsonSerialize(): mixed
{
throw new \Exception('This error is expected');
}
}
$obj = new JsonSerializableObject();
try {
echo json_encode($obj);
} catch (\Exception $e) {
echo $e->getMessage();
}
?>
--EXPECT--
This error is expected