php数组转换为对象PHP - Convert Array to Object with stdClass_PHP教程
程序员文章站
2024-01-28 23:17:04
...
The PHP stdClass() is something that isn't well documented but i will try to shed some light into the matter. stdClass is a default PHP object which has no predefined members. The name stdClass is used internally by Zend and is reserved. So that means that you cannot define a class named stdClass in your PHP code.
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'
?>
推荐阅读
-
PHP数组和对象相互转化,stdClass Object转array
-
PHP对象转换为数组array(object) 数组值读取
-
php数组转换为对象PHP - Convert Array to Object with stdClass_PHP教程
-
PHP对象转换为数组array(object) 数组值读取
-
PHP对象转数组(Object转Array),Json转数组(Json转Array)的方法_PHP教程
-
PHP对象转数组(Object转Array),Json转数组(Json转Array)的方法
-
PHP对象转数组(Object转Array),Json转数组(Json转Array)的方法_PHP教程
-
PHP对象转数组(Object转Array),Json转数组(Json转Array)的方法