我已經在SO上搜索了這個答案,但也許我沒有問正確的問題,因爲我還沒有找到答案(但我知道可能有很多例子)。將混合對象/數組轉換爲JSON
我有這個數組對象:
array(1) {
[0]=>
object(stdClass)#424 (3) {
["AC"]=>
string(6) "Active"
["CL"]=>
string(6) "Closed"
["OH"]=>
string(7) "On Hold"
}
}
我試圖重新格式化,因此最終的結果是這樣的,所以它可以插入我的多選控件的數據源:
[
{
"value": "AC",
"text": "Active"
},
{
"value": "OH",
"text": "On Hold"
},
{
"value": "CL",
"text": "Closed"
}
]
我編輯了我的答案,現在有效嗎? – Jonan 2014-09-03 17:59:22