Skip to content

Instantly share code, notes, and snippets.

@suziewong
Created December 17, 2012 07:47
Show Gist options
  • Save suziewong/4316491 to your computer and use it in GitHub Desktop.
Save suziewong/4316491 to your computer and use it in GitHub Desktop.
PHP对象转成数组的函数
/**
* 对象转数组
* @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