PHP数组和对象表示成员的区别

C:\Users\Administrator\Desktop\PHP操作数据库>php test2.php
123Array
(
[a] => 123
[b] => 456
)
<br><br>123A Object
(
[a] => 123
[b] => 456
)

C:\Users\Administrator\Desktop\PHP操作数据库>php test2.php
123Array
(
[a] => 123
[b] => 456
)
<br><br>123A Object
(
[a] => 123
[b] => 456
)