forked from php/php-src
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* PHP-5.6: Do not wrap user exception in case of custom JSON serialization Conflicts: ext/json/json.c
- Loading branch information
Showing
2 changed files
with
27 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
--TEST-- | ||
Bug #73113 (Segfault with throwing JsonSerializable) | ||
Also test that the custom exception is not wrapped by ext/json | ||
--SKIPIF-- | ||
<?php if (!extension_loaded("json")) print "skip"; ?> | ||
--FILE-- | ||
<?php | ||
|
||
class JsonSerializableObject implements \JsonSerializable | ||
{ | ||
public function jsonSerialize() | ||
{ | ||
throw new \Exception('This error is expected'); | ||
} | ||
} | ||
|
||
$obj = new JsonSerializableObject(); | ||
try { | ||
echo json_encode($obj); | ||
} catch (\Exception $e) { | ||
echo $e->getMessage(); | ||
} | ||
--EXPECTF-- | ||
This error is expected |