json_decode_error.phpt 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. --TEST--
  2. Test json_decode() function : error conditions
  3. --SKIPIF--
  4. <?php if (!extension_loaded("json")) print "skip"; ?>
  5. --FILE--
  6. <?php
  7. echo "*** Testing json_decode() : error conditions ***\n";
  8. echo "\n-- Testing json_decode() function with no arguments --\n";
  9. var_dump(json_decode());
  10. echo "\n-- Testing json_decode() function with more than expected no. of arguments --\n";
  11. $extra_arg = 10;
  12. var_dump(json_decode('"abc"', true, 512, 0, $extra_arg));
  13. echo "\n-- Testing json_decode() function with depth below 0 --\n";
  14. var_dump(json_decode('"abc"', true, -1));
  15. ?>
  16. ===Done===
  17. --EXPECTF--
  18. *** Testing json_decode() : error conditions ***
  19. -- Testing json_decode() function with no arguments --
  20. Warning: json_decode() expects at least 1 parameter, 0 given in %s on line %d
  21. NULL
  22. -- Testing json_decode() function with more than expected no. of arguments --
  23. Warning: json_decode() expects at most 4 parameters, 5 given in %s on line %d
  24. NULL
  25. -- Testing json_decode() function with depth below 0 --
  26. Warning: json_decode(): Depth must be greater than zero in %s on line %d
  27. NULL
  28. ===Done===