>백엔드 개발 >PHP 튜토리얼 >诡异事件,数组有关问题

诡异事件,数组有关问题

WBOY
WBOY원래의
2016-06-13 10:28:04823검색

诡异事件,数组问题

PHP code
<!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->$list=Array(    [page] => Array        (            [page_id] => 1,            [path] => tiyee.html,            [templates] => zj001.tpl,            [key] => 21212121,        ),    [qianggou] => Array        (            [object_id] => 1,            [number] => 0,            [oldprice] => 0.00,            [newprice] => 0.00,            [begintime] => 0000-00-00 00:00:00,            [endtime] => 0000-00-00 00:00:00,            [limit_b] => 0000-00-00 00:00:00,            [limit_e] => 0000-00-00 00:00:00,            [type] => 1,            [saleout] => 0,            [classtime] => 0000-00-00 00:00:00,            [page_id] => 1,        ),    [miaosha] => Array        (            [object_id] => 2,            [number] => 0,            [oldprice] => 0.00,            [newprice] => 0.00,            [begintime] => 2010-04-18 23:42:10,            [endtime] => 2010-04-18 23:42:10,            [limit_b] => 2010-04-18 23:42:10,            [limit_e] => 2010-04-18 23:42:10,            [type] => 2,            [saleout] => 0,            [classtime] => 0000-00-00 00:00:00,            [page_id] => 1,        ))echo '<pre class="brush:php;toolbar:false">';print_r($list['page']);

结果为什么是1?明明应该是个数组啊?

------解决方案--------------------
PHP code
$list=array(    'page' => array (            'page_id' => 1,            'path' => 'tiyee.html',            'templates' => 'zj001.tpl',            'key' => 21212121        ));print_r($list['page']);<div class="clear">
                 
              
              
        
            </div>
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.