php数组转换为对象PHP
It can be used to manually instantiate generic objects which you can then set member variables for, this is useful for passing objects to other functions or methods which expect to take an object as an argument. An even more likely usage is casting an array to an object which takes each value in the array and adds it as a member variable with the name based on the key in the array.
Here's an example below that converts an array to an object below. This method is called Type Casting.
$person = array (
'firstname' => 'Richard',
'lastname' => 'Castera'
);
$p = (object) $person;
echo $p->firstname; // Will print 'Richard'
?>
上一篇: YII学习,yii_PHP教程
下一篇: scala数据库访问tool slick