1,"3123123"=>1,"221112"=0);怎么转成json类数组格式啊,如下:谢谢PHP code$output = [msg,{"tel":"13546"/> 1,"3123123"=>1,"221112"=0);怎么转成json类数组格式啊,如下:谢谢PHP code$output = [msg,{"tel":"13546">

首頁 >後端開發 >php教程 >数组转换,该如何处理

数组转换,该如何处理

WBOY
WBOY原創
2016-06-13 10:27:09997瀏覽

数组转换
有一数组:

PHP code
<!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->$input = array("13546465"=>1,"3123123"=>1,"221112"=0);


怎么转成json类数组格式啊,如下:谢谢

PHP code
<!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->$output = [msg,{"tel":"13546465","status":"1"},{"tel":"3123123","status":"1"},{"tel":"221112","status":"0"}]


------解决方案--------------------
PHP code
$input = array("13546465"=>1,"3123123"=>1,"221112"=>0);$r[] = 'msg';foreach($input as $k=>$v)  $r[] = array('tel' => "$k", 'status' => "$v");$output = json_encode($r);echo $output;<div class="clear">
                 
              
              
        
            </div>
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn