PHP数组里面的元素部类是不是可以不一样

WBOY
Release: 2016-06-13 11:58:40
Original
1354 people have browsed it

PHP数组里面的元素类型是不是可以不一样
弱弱的问问                           .
------解决方案--------------------
当然可以!

var_dump(array(123, 'abc'));
Copy after login
array(2) {<br />  [0]=><br />  int(123)<br />  [1]=><br />  string(3) "abc"<br />}<br /><br />
Copy after login

------解决方案--------------------
是的,比如常用的类型如字符串,整型等等。
------解决方案--------------------
数组里面的value可以为任何类型,但是键名key只能是是数字和字符串。
------解决方案--------------------
数组元素也可以是数组。

$arr = array(1,'abc','ok'=>'678',array('1','2','3'));

可以不同类型的。
------解决方案--------------------
是可以不同的
------解决方案--------------------
可以是任意的数据,索引也可以是string和下标索引的混合
------解决方案--------------------
你要放对象都行...

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template