$arr[0]和$arr['0']有什么区别?
phpcn_u224
phpcn_u224 2016-12-19 17:57:27
0
2
1786

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

phpcn_u224
phpcn_u224

reply all(2)
数据分析师

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.

阿神

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

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template