PHP-将对象转换为关联数组
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP-将对象转换为关联数组相关的知识,希望对你有一定的参考价值。
Converts a php object to an associative array
function object_to_array($data) { { foreach($data as $key => $value) { $result[$key] = $this->object_to_array($value); } return $result; } return $data; }
以上是关于PHP-将对象转换为关联数组的主要内容,如果未能解决你的问题,请参考以下文章
将带有数组的 JavaScript 对象转换为 PHP 数组