码迷,mamicode.com
首页 > Web开发 > 详细

PHP stdclass转array的方法

时间:2019-11-17 10:25:14      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:user   decode   function   return   方法   int   结果   turn   use   

PHP stdclass转array的方法

<pre>
<?php
$a = new stdClass();
$a->id = ‘11 ‘;
$a->username = ‘me‘;
print_r($a);
$b=object2array($a);
print_r($b);
function object2array($object) {
$object1 = json_decode( json_encode( $object),true);
return $object1;
}
?>
</pre>


输出结果
<pre>

stdClass Object
(
[id] => 11
[username] => me
)
Array
(
[id] => 11
[username] => me
)
</pre>

 

PHP stdclass转array的方法

标签:user   decode   function   return   方法   int   结果   turn   use   

原文地址:https://www.cnblogs.com/newmiracle/p/11875323.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!