我从其他网站使用web-api,它返回的值类似于字符串格式 -
BehaviorSubject
我正在考虑将其转换为数组或对象(json)...有没有办法使用php bulitin函数转换它...
答案 0 :(得分:3)
为什么不使用json_decode
功能。
$string = '[[["I eat rice","I ate rice","I am eating rice"]]]';
$array = json_decode($string);
var_dump($array);
这将是一个多维数组:
array(1) {
[0]=>
array(1) {
[0]=>
array(3) {
[0]=>
string(10) "I eat rice"
[1]=>
string(10) "I ate rice"
[2]=>
string(16) "I am eating rice"
}
}
}