Home  >  Article  >  Backend Development  >  怎么合并2个JSON数组

怎么合并2个JSON数组

WBOY
WBOYOriginal
2016-06-13 13:07:121138browse

如何合并2个JSON数组

C# code
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

-->$json1 = 


如何合并2个JSON数组?(没有decode的情况下)
array_merge 对JSON无效。有没有什么简易的函数,或者FUNCTION?



------解决方案--------------------
PHP code

$arr1 = array();
$arr2 = array();
$arr3 = array();

$web=json_decode($json1);
$arr1=json_to_array($web);
$web=json_decode($json2);
$arr2=json_to_array($web);

$arr3 = array_merge($arr1,$arr2);
echo "<pre class="brush:php;toolbar:false">";
print_r($arr3);

function json_to_array($web){
$arr=array();
foreach($web as $k=>$w){
if(is_object($w)) $arr[$k]=json_to_array($w); 
else $arr[$k]=$w;
}
return $arr;
} <div class="clear">
                 
              
              
        
            </div>
Statement:
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