当我回显数组时,结果是:
$Items = Array( [147] => Array([ItemName] => Array([0]=>White Snack [1]=>Dark Cookie) [ItemCode] => Array([0]=>IT-WS [1]=>IT-DC ) ) [256] => Array([ItemName] => Array([0]=>Soft Sandwiches [1]=>Hard Drinks) [ItemCode] => Array([0]=>IT-SS [1]=>IT-HD ) ))
现在我需要以表格形式显示以下结果,即索引 147 和 256 ,我将从单独的 foreach 循环中传递它们以获得正确的索引值。
------------147---------------
名称 ------------------------------------ 代码
白点心--------------- WS
黑暗饼干 --------------------------- DC
-----------256---------------
名称 ------------------------------------ 代码
软三明治 ---------------------- SS
烈性饮料---------------------------- HD
我无法做到这一点。请帮忙。
$ItemIndexes = array(147,256);
foreach($ItemIndexes as $ItemMainIndex)
{
//further code here ,
//here I would send the $ItemMainIndex to the $Items array
//and get the corresponding index value and display it accordingly.
}