mirror of
https://github.com/php/php-src.git
synced 2026-03-24 16:22:37 +01:00
24 lines
478 B
PHP
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
|