如何在PHP中使用数组将对象内的对象转换为数组?

时间:2013-08-03 08:06:46

标签: php object

object(FuncTest)) {
  ["name"]=>
  string(14) "Test"
  ["skill_tech"]=>
  object(Skill) {
    ["def"]=>
    string(1) "0"
  }
}

我有这种对象,如何在PHP中转换为数组内的数组。

由于

1 个答案:

答案 0 :(得分:0)

use json_decode
// The second parameter of json_decode forces parsing recursively an object into an associative array
$array = json_decode(json_encode($object), true);