var_dump json php string code example
Example 1: js json_encode pretty
var str = JSON.stringify(obj, null, 2); // spacing level = 2
Example 2: json stringify php decode
$postedData = $_POST["JSONfullInfoArray"];
$tempData = str_replace("\\", "",$postedData);
$cleanData = json_decode($tempData);
var_dump($cleanData);