json解码到需要的php变量示例

时间:2014-10-11 21:27:22

标签: php mysql json decode

您好我有以下字段保存为名为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"]

感谢。

1 个答案:

答案 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