json_decode_exceptions.phpt 966 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. --TEST--
  2. Test json_decode() 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_decode("{", false, 512, JSON_THROW_ON_ERROR));
  9. } catch (JsonException $e) {
  10. var_dump($e);
  11. }
  12. ?>
  13. --EXPECTF--
  14. object(JsonException)#1 (7) {
  15. ["message":protected]=>
  16. string(12) "Syntax error"
  17. ["string":"Exception":private]=>
  18. string(0) ""
  19. ["code":protected]=>
  20. int(4)
  21. ["file":protected]=>
  22. string(%d) "%s"
  23. ["line":protected]=>
  24. int(%d)
  25. ["trace":"Exception":private]=>
  26. array(1) {
  27. [0]=>
  28. array(4) {
  29. ["file"]=>
  30. string(%d) "%s"
  31. ["line"]=>
  32. int(%d)
  33. ["function"]=>
  34. string(11) "json_decode"
  35. ["args"]=>
  36. array(4) {
  37. [0]=>
  38. string(1) "{"
  39. [1]=>
  40. bool(false)
  41. [2]=>
  42. int(512)
  43. [3]=>
  44. int(4194304)
  45. }
  46. }
  47. }
  48. ["previous":"Exception":private]=>
  49. NULL
  50. }