gpt4 book ai didi

php - 需要 json 解码为 php 变量示例

转载 作者:行者123 更新时间:2023-11-29 23:37:48 25 4
gpt4 key购买 nike

您好,我有以下字段,该字段保存为名为 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[附件->"searchStr"]

谢谢。

最佳答案

$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

关于php - 需要 json 解码为 php 变量示例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26319427/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com