Home  >  Article  >  php教程  >  php数组键名技巧小结,数组键名小结

php数组键名技巧小结,数组键名小结

WBOY
WBOYOriginal
2016-06-13 09:14:241116browse

php数组键名技巧小结,数组键名小结

本文较为详细的总结了php数组键名的技巧。分享给大家供大家参考。具体分析如下:

1、$arr[true] 等价于 $arr[1];$arr[false] 等价于 $arr[0]。

2、使null做为键名,相当于创建或覆盖一个$arr[null],可以使用$arr[null]或$arr[""]来访问。

3、使用带小数点的数字作为键名时,键名会自动截取整数部分作为键名。如$arr[123.45]=5,你使用$arr[123.45]或$arr[123]均可以取得键值;用foreach遍历时,使用的是$arr[123]。

4、$arr[]=5,会在数组$arr后面添加上该元素。

注:数组中键名的数据类型为整数或字符串型

希望本文所述对大家的php程序设计有所帮助。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn