php array强制转换成 class类

95 阅读1分钟

$config=array(
'host'=>"localhost",
'user'=>"localhost"
);
$obj1=(object)$config;
echo $obj1->user; //输出 localhost