結合して最終的に電子メールで作成する必要がある 4 つの配列を投稿するフォームがあります。4 つの配列:
$quantityArray = $this->input->post('qty');
$dimensionArray = $this->input->post('dimension');
$thicknessArray = $this->input->post('thickness');
$descriptionArray = $this->input->post('description');
すべて同じ配列の長さになり、各インデックスは関連付けられます。次のような4つの配列を組み合わせるにはどうすればよいですか
[0]
'qty' => '1',
'dimenesion => '2x2',
'thickness' => '2in',
'description' => 'this is the description'
[1]
'qty' => '1',
'dimenesion => '2x2',
'thickness' => '2in',
'description' => 'this is the description'
array_combined、array_merged を試しましたが、探している結果が得られません。これについて助けてくれてありがとう。