I'm trying handle bad json data when parsed through json_decode(). I'm using the following script:
if(!json_decode($_POST)) {
echo "bad json data!";
exit;
}
If $_POST equals:
'{ bar: "baz" }'
Then json_decode handles the error fine and spits out "bad json data!"; However, if I set $_POST to something like "invalid data", it gives me:
Warning: json_decode() expects parameter 1 to be string, array given in C:\server\www\myserver.dev\public_html\rivrUI\public_home\index.php on line 6
bad json data!
Do I need to write a custom script to detect valid json data, or is there some other nifty way to detect this?
$_POSTis always an array containing the x-www-form-urlencoded parameters passed via POST. How do you send your data to your PHP script? – Gumbo Feb 27 '10 at 16:58