阅读背景:

PHP Integer数组索引真的是数字吗?

来源:互联网 

Consider this example

考虑这个例子

<?php
    $test = array("00"=>"A","B","C","D","E");
    print_r($test);
    echo "<br>";

    echo $test[0];
    echo "<br>";
    echo $test["0"];
    echo "<br>";

    echo $test["00"];
    echo "<br>";
    echo $test[00];
?>
<?php
    $tes



你的当前访问异常,请进行认证后继续阅读剩余内容。

分享到: