它的意思就是这个数组里a=1,b=2
<?php
    $new=array('a'=>1,'b'=>2);
    echo "<pre>";
    print_r($new);
    echo "</pre>";
?>
自己跑一下看看就知道了.