当前位置:首页 > PHP教程 > php数组 > 列表

php关联数组与索引数组及其显示方法

发布:smiling 来源: PHP粉丝网  添加日期:2021-09-04 23:26:30 浏览: 评论:0 

下面小编就为大家分享一篇php关联数组与索引数组及其显示方法,具有很好的参考价值,希望对大家有所帮助,一起跟随小编过来看看吧。

数据

username password

test 123456

关联数组:

mysql_fetch_assoc()

array([username]=>'test',[password]=>'123456')

索引数组:

mysql_fetch_array()

array([0]=>'test',[1]=>'123456')

var_export()

array ( 0 => 1, 1 => 'a', 2 => 'hello', )

var_dump()

array(3) { [0]=> int(1) [1]=> string(1) "a" [2]=> string(5) "hello" }

Tags: php关联数组 php索引数组

分享到: