json_encode_exceptions.phpt 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. --TEST--
  2. Test json_encode() function : JSON_THROW_ON_ERROR flag
  3. --SKIPIF--
  4. <?php if(!extension_loaded('json')) die('skip json extension not loaded') ?>
  5. --FILE--
  6. <?php
  7. try {
  8. var_dump(json_encode("\x80", JSON_THROW_ON_ERROR));
  9. } catch (JsonException $e) {
  10. var_dump($e);
  11. }
  12. // JSON_PARTIAL_OUTPUT_ON_ERROR is incompatible with exceptions
  13. // So it overrides it for the sake of working with wrappers that add the
  14. // JSON_THROW_ON_ERROR flag
  15. var_dump(json_encode("\x80", JSON_THROW_ON_ERROR | JSON_PARTIAL_OUTPUT_ON_ERROR));
  16. var_dump(json_last_error());
  17. var_dump(json_last_error_msg());
  18. ?>
  19. --EXPECTF--
  20. object(JsonException)#1 (7) {
  21. ["message":protected]=>
  22. string(56) "Malformed UTF-8 characters, possibly incorrectly encoded"
  23. ["string":"Exception":private]=>
  24. string(0) ""
  25. ["code":protected]=>
  26. int(5)
  27. ["file":protected]=>
  28. string(%d) "%s"
  29. ["line":protected]=>
  30. int(%d)
  31. ["trace":"Exception":private]=>
  32. array(1) {
  33. [0]=>
  34. array(4) {
  35. ["file"]=>
  36. string(%d) "%s"
  37. ["line"]=>
  38. int(%d)
  39. ["function"]=>
  40. string(11) "json_encode"
  41. ["args"]=>
  42. array(2) {
  43. [0]=>
  44. string(1) "%s"
  45. [1]=>
  46. int(4194304)
  47. }
  48. }
  49. }
  50. ["previous":"Exception":private]=>
  51. NULL
  52. }
  53. string(4) "null"
  54. int(5)
  55. string(56) "Malformed UTF-8 characters, possibly incorrectly encoded"