您好我有以下字段保存为名为attachment
的字段。
[
{
"name":"ClientFiles\/POL02, Impartiality Policy Statement,Rev0_wg1t36oh.pdf",
"usrName":"POL02, Impartiality Policy Statement,Rev0.pdf",
"size":172223,
"type":"application\/pdf",
"searchStr":"POL02, Impartiality Policy Statement, Rev0.pdf,!:sStrEnd"
}
]
有人可以告诉我如何编写一个json_decode代码,以便将元素作为变量保存。
例如:
$ seachStr = json_decode [attachment->" searchStr"]
感谢。
答案 0 :(得分:0)
$attachmentArr = json_decode($attachment,true); // convert the json to php array variable
echo '<pre>', var_dump($attachmentArr), '</pre>';// OUTPUT
$searchStr = $attachmentArr['searchStr'];// Pick the desired element out of the array
echo '<pre>', var_dump($searchStr), '</pre>';// OUTPUT