我有一個關於在php中關聯多維數組的任務。關聯數組PHP隨機值
比方說,我有如下表:
Product Nr Img
kat1 abc abc.png
kat1 xyz xyz.png
kat2 def def.png
kat2 gfh gfh.png
kat2 jug jug.png
kat3 lkj lkj.png
kat3 tfh tfh.png
kat4 fsg fsg.png
kat4 gzt gzt.png
構建陣列,如:
$table= array(
array("Product" => "Kat1","Nr" =>"abc","IMG" =>"abc.png"),
array("Product" => "Kat1","Nr" =>"xyz","IMG" =>"xyz.png"),
array("Product" => "Kat2","Nr" =>"def","IMG" =>"def.png"),
array("Product" => "Kat2","Nr" =>"gfh","IMG" =>"gfh.png"),
array("Product" => "Kat2","Nr" =>"jug","IMG" =>"jug.png"),
array("Product" => "Kat3","Nr" =>"lkj","IMG" =>"lkj.png"),
array("Product" => "Kat3","Nr" =>"tfh","IMG" =>"tfh.png"),
array("Product" => "Kat4","Nr" =>"fsg","IMG" =>"fsg.png"),
array("Product" => "Kat4","Nr" =>"gzt","IMG" =>"gzt.png"),
);
我想建隨機productsets。每個產品組應包含來自每個單一分類的一種產品。例如下面的輸出:
Kat1 = abc, abc.png
Kat2 = gfh, gfh.png
Kat3 = lkj, lkj.png
Kat4 = gzt, gzt.png
我不知道如果我在正確的道路或者其可能與該類型的數組。任何想法如何我可以解決這個問題?
預計你去嘗試自己**編寫代碼**。在[**做更多的研究**之後](https://meta.stackoverflow.com/q/261592/1011527)如果你有問題**發佈你已經嘗試了**的**明確的解釋不工作**並提供[最小,完整和可驗證示例](http://stackoverflow.com/help/mcve)。閱讀[如何問](http://stackoverflow.com/help/how-to-ask)一個很好的問題。請務必[參觀](http://stackoverflow.com/tour)並閱讀[this](https://meta.stackoverflow.com/q/347937/1011527)。 –
你能解釋一些關於你到底想要什麼嗎?正如你提到的「Kat1 = abc,abc.png」,不太清楚你的問題。 – hvs9