-7
を建てた可能性がどのように私はこのような配列形式のデータを持っている: -私は配列形式のデータを持って、私は配列からそれぞれの値を取り、新しい配列
Array
(
[itemId] => Array
(
[0] => 1001
[1] => 1002
)
[itemName] => Array
(
[0] => Sample Item one
[1] => Sample Item two
)
[itemDesc] => Array
(
[0] => Item Specifications
[1] => Item Warranty
)
[itemCode] => Array
(
[0] => GL2113
[1] => SP88293
)
[itemQty] => Array
(
[0] => 1
[1] => 5
)
[itemType] => Array
(
[0] => Electronic
[1] => Computer
)
)
形式以下にそれを変換する方法を: -
array(
[0]=>array(
[itemId] =>1001,
[itemName] =>Sample Item one,
[itemDesc] =>Item Specifications,
[itemCode] =>GL2113,
[itemQty] =>1,
[itemType] =>Electronic
)
[1]=>array(
[itemId] =>1002,
[itemName] =>Sample Item two,
[itemDesc] =>Item Warranty,
[itemCode] =>SP88293,
[itemQty] =>5,
[itemType] =>Computer
)
)
ここにコードとすべてを貼り付けてください。画像ではありません。あなたのものを確認することはほとんど不可能です –
このリンクをクリックしてください:http://rammohan.website/array_data.php –