简单地说,如何从此数组中删除对象。如何转换成数组.......
array(2) {
[0]=>
object(stdClass)#44 (8) {
["invoice"]=>
string(2) "32"
["date"]=>
string(19) "2016-03-04 03:40:53"
["type_ext"]=>
string(6) "SUBSCR"
["type_not"]=>
int(4)
}
[1]=>
object(stdClass)#42 (8) {
["id_invoice"]=>
string(2) "32"
["date"]=>
string(19) "2016-03-04 03:40:53"
["type_ext"]=>
string(6) "SUBSCR"
["type_not"]=>
int(4)
}
}
简单地解释一下......
答案 0 :(得分:1)
这个问题已被多次询问。
无论如何,最简单的解决方案是使用内置的json
函数
json_decode(json_encode($object), true);