php實現多個一維數組對應合併成二維數組

首先我拿到的是這樣的一個數據 所以我們要先把字符串轉換成數組 $arr1 = explode(",",$olduser[0]['userids']); $arr2 = explode(",",$olduser[0]['usernames']); 結果如下: 然後就是將這兩個一維數組數據對應合併成二維數組 $a = array(ids=>$arr1); $b = array (names=>$arr
相關文章
相關標籤/搜索