Created
December 17, 2012 07:47
-
-
Save suziewong/4316491 to your computer and use it in GitHub Desktop.
PHP对象转成数组的函数
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 对象转数组 | |
* @author 佚名 | |
* @param object $obj | |
* @return array | |
*/ | |
function object_to_array($obj){ | |
$_arr = is_object($obj) ? get_object_vars($obj) : $obj; | |
foreach ($_arr as $key => $val){ | |
$val = (is_array($val) || is_object($val)) ? $this->object_to_array($val) : $val; | |
$arr[$key] = $val; | |
} | |
return $arr; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment