3v4l.org

run code in 300+ PHP versions simultaneously
<?php // the name and value must be enclosed in double quotes // single quotes are not valid $bad_json = "{ 'bar': 'baz' }"; echo "BAD:"; json_decode($bad_json); // null $good_json = '{ "baz": "bar" }'; echo "GOOD"; json_decode($good_json);

preferences:
57.69 ms | 402 KiB | 5 Q