📅  最后修改于: 2023-12-03 15:20:39.360000             🧑  作者: Mango
toArray()是PHP中的一个数组函数,它用于将对象转换为数组.
array toArray (object $object);
$object:要转换为数组的对象
返回将对象转换为的数组
class myClass {
public $name = 'John Doe';
public $age = 30;
protected $password = 'password';
}
$obj = new myClass();
$arr = toArray($obj);
print_r($arr);
输出结果为:
Array
(
[name] => John Doe
[age] => 30
)
以上就是toArray()函数的介绍,希望对大家有所帮助!