内置在php中将字符串转换为数组的功能

时间:2016-12-31 21:30:50

标签: php arrays string

我从其他网站使用web-api,它返回的值类似于字符串格式 -

BehaviorSubject

我正在考虑将其转换为数组或对象(json)...有没有办法使用php bulitin函数转换它...

1 个答案:

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