-4
object(FuncTest)) {
["name"]=>
string(14) "Test"
["skill_tech"]=>
object(Skill) {
["def"]=>
string(1) "0"
}
}
我有這種類型的對象,我怎樣才能轉換成數組在PHP中的數組。如何將對象內的對象轉換爲PHP中的數組的數組?
感謝
object(FuncTest)) {
["name"]=>
string(14) "Test"
["skill_tech"]=>
object(Skill) {
["def"]=>
string(1) "0"
}
}
我有這種類型的對象,我怎樣才能轉換成數組在PHP中的數組。如何將對象內的對象轉換爲PHP中的數組的數組?
感謝
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);
你好,請永遠記住首先做一個快速谷歌搜索。在搜索字段中輸入您的問題的標題給出了一個完美的答案:[將多維對象轉換爲數組](http://stackoverflow.com/q/13567939) –
感謝您的教學 – hehetest