<?php
print_r($response->response->docs);
?>
Đầu ra như sau:
Array
(
[0] => Object
(
[_fields:private] => Array
(
[id]=>9093
[name]=>zahir
)
Object
(
[_fields:private] => Array
(
[id]=>9094
[name]=>hussain
)..
)
)
Làm thế nào tôi có thể chuyển đổi đối tượng này thành một mảng? Tôi muốn xuất ra như sau:
Array
(
[0]=>
(
[id]=>9093
[name]=>zahir
)
[1]=>
(
[id]=>9094
[name]=>hussain
)...
)
Điều này có thể không?