Home  >  Q&A  >  body text

$arr[0]和$arr['0']有什么区别?

如题 我以前学JS的 数组 下标 不需要加''  而是PHP数组下标 必须加引号么   我试了 没加'' 也能输出苹果...

phpcn_u224phpcn_u2242883 days ago1731

reply all(2)I'll reply

  • 数据分析师

    数据分析师2017-09-30 22:59:34

    What is the difference between $arr[0] and $arr['0']? -PHP Chinese website Q&A-What is the difference between $arr[0] and $arr['0']? -PHP Chinese website Q&A

    Please watch and learn.

    reply
    0
  • 阿神

    阿神2016-12-19 17:59:07

    加引号$arr['0']表示取的是键为字符串0的值,没有引号$arr[0]表示取的是键为整数0的值。

    reply
    3
  • Cancelreply