2D配列からデータを取得する方法に関する多くのチュートリアルを見てきましたが、これに似たものを構築する必要があり、従うことができるロジックが見つかりませんでした:
$array = array("socks" => array("blue", "red", "green"),
"shirts" => array("small", "medium", "large"));
コードを開始するためのロジックさえ理解できないようです....
for each clothingType // I did this
get options // I did this
for each option //I did this
add to the clothingOption Array //... help!
私は clothingOption 2D Array の構築だけにとどまっています
それは次のようなものでしょうか
foreach clothingType as $kClothes =>VClothes
get Options
for each Options as $kOptions =>$VOption
$array[$VClothes][]= $VOption
ありがとうございます。これが曖昧すぎないことを願っています....