数据
关联数组:
'test',[password]=>'123456')
索引数组:
'test',[1]=>'123456')
var_export()
1,1 => 'a',2 => 'hello',)
var_dump()
int(1) [1]=> string(1) "a" [2]=> string(5) "hello" }
以上这篇PHP关联数组与索引数组及其显示方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持编程之家。
原文链接:https://www.f2er.com/php/16271.html