我正在创建一个数据数组,然后在其上使用 json_encode,然后将其存储在我的数据库中。现在,我要做的是从数据库中返回它们并在 foreach 循环中使用它们,但我无法开始工作。
这是它在数据库中的样子:
["483","482"]
我希望能够做这样的事情:
$json = ["483","482"]; //(note, this would be the value directly from the database)
foreach($json as $photoID)
{
echo $photoID;
}
我再次尝试使用 json_encode,显然它没有用。它刚刚返回:"["483","482"]"