我使用db
在json_encode
中存储了一些值。现在在获取时我得到了像["ab","cd"]
这样的值。我已经尝试了exploding
,json_encode
和然后解码。但没有任何作用。一些尝试过的代码在下面
$array = "["ab","cd"]";
$value = (array)$array;
//-------------
$array = (array) $array;
// get_object_vars
$array = get_object_vars($object);
print_r($array);
当我直接在数组上循环时,我没有得到任何值。谢谢你提前获得任何帮助。 我就这样:
var_dump(json_decode($object));
print_r($object);
输出:
NULL ["MKD","KD3"]
答案 0 :(得分:2)
如果我理解你的问题,我认为你正在寻找json_decode。
df['Foldchange']=2.0
结果将是
d1 = {
'first': [['soccer'], 2],
'second': [['football'], 10],
'third': [['basketball'], 5],
'fourth': [['rugby'], 3]
}