📜  json stringify php decode - PHP 代码示例

📅  最后修改于: 2022-03-11 14:53:54.948000             🧑  作者: Mango

代码示例2
$postedData = $_POST["JSONfullInfoArray"];
$tempData = str_replace("\\", "",$postedData);
$cleanData = json_decode($tempData);
var_dump($cleanData);