Home > Article > Backend Development > How to convert array to object in php
php method to convert array to object: [$array=array('xxx'=>'xxx'); $vl=json_encode($array); $ob=json_decode($vl); print_r ($ob);].
The operating environment of this article: windows10 system, php 7, thinkpad t480 computer.
Conversion between array and object:
1. Convert array to Object
$array=array('a' =>'哈哈','b' =>'bnbbbb','西' =>'嘻嘻嘻'); $vl=json_encode($array); $ob=json_decode($vl); echo "<pre class="brush:php;toolbar:false">"; print_r($ob);
2. Convert Object to array
在Object变量前加 (array) 示例1: $data=(array)$Object; var_dump($data); 示例2: //或者调用这个函数,将其幻化为数组,然后取出对应值 function object_array($array) { if(is_object($array)) { $array = (array)$array; } if(is_array($array)) { foreach($array as $key=>$value) { $array[$key] = object_array($value); } } return $array; }
Recommended learning: php Training
The above is the detailed content of How to convert array to object in php. For more information, please follow other related articles on the PHP Chinese website!