2013-08-03 167 views
-4
object(FuncTest)) { 
    ["name"]=> 
    string(14) "Test" 
    ["skill_tech"]=> 
    object(Skill) { 
    ["def"]=> 
    string(1) "0" 
    } 
} 

我有這種類型的對象,我怎樣才能轉換成數組在PHP中的數組。如何將對象內的對象轉換爲PHP中的數組的數組?

感謝

+1

你好,請永遠記住首先做一個快速谷歌搜索。在搜索字段中輸入您的問題的標題給出了一個完美的答案:[將多維對象轉換爲數組](http://stackoverflow.com/q/13567939) –

+0

感謝您的教學 – hehetest

回答

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); 
相關問題