Home > php教程 > php手册 > body text

PHP对象转数组(Object转Array),Json转数组(Json转Array)的方法

WBOY
Release: 2016-06-13 09:23:17
Original
1741 people have browsed it

PHP对象转数组(Object转Array),Json转数组(Json转Array)的方法

(1)php对象转数组的方法(object 转 array):

/**
 * object 转 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)?object_to_array($val):$val;
		$arr[$key]=$val;
	}
	return $arr;
}
Copy after login

(2)php Json字符转数组的方法(json 转 array):

如果是个 json 字符串的话,可直接通过 json_decode 函数将字符串转换成数组。

json_decode (PHP 5 >= 5.2.0, PECL json >= 1.2.0)

json_decode — 接受一个 JSON 格式的字符串并且把它转换为 PHP 变量

mixed json_decode(string $json[,bool $assoc])

参数:

json  待解码的 json string 格式的字符串。

assoc  当该参数为 TRUE 时,将返回一个数组(关联数组)形式的结果,默认为false,返回的是一个对象。

您可能感兴趣的文章

  • php将多维数组转换为一维数组的办法
  • 在php中分别使用curl的post提交数据的方法和get获取网页数据的方法总结
  • js中将Object转换为String函数代码
  • 用PHP函数memory_get_usage获取当前PHP内存消耗量以实现程序的性能优化
  • php获取数组第一个数组单元值的方法
  • php在数组中查找某个值是否存在(in_array(),array_search(),array_key_exists())
  • PHP数组函数array_map()笔记
  • PHP解决网址URL编码问题的函数urlencode()、urldecode()、rawurlencode()、rawurldecode()
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template