這次帶給大家操作php關聯數組與索引數組步驟詳解,操作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" }相信看了本文案例你已經掌握了方法,更多精彩請關注php中文網其它相關文章! 推薦閱讀:
bindParam與bindValue在Yii2中使用步驟解析
以上是操作php關聯數組與索引數組步驟詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!