Heim  >  Artikel  >  Backend-Entwicklung  >  怎么合并2个JSON数组

怎么合并2个JSON数组

WBOY
WBOYOriginal
2016-06-13 13:07:121095Durchsuche

如何合并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>
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn