Get value from a array

前端 未结 2 1995
迷失自我
迷失自我 2021-01-29 12:12

update

how can I retrieve this value? I need to do that if I will write the value to my database.

array(3) {
 [1]=> NULL  

 [2]=> array(2) {

             


        
2条回答
  •  一向
    一向 (楼主)
    2021-01-29 13:04

    If your array is referenced as $myArray, you can get the string 39 via $myArray[0], i.e., this zeroth item.

提交回复
热议问题