0

我正在尝试将数据加载到多维数组中,但它似乎没有正确输出。我有产品的股票 id,然后我想加载它的每个选项名称和值。所有变量都有正确的数据,只是没有正确构建数组这是我的代码,

$completearray = array();
$x=0;
while($result=mysql_fetch_array($query))
{
 $x++;
 $completearray[$x] = $result['stock_id'];
 more code here
 $z=0
  foreach ($allattributes as $attribute)
  {
   more code here
   $z++
   $compeletearray[$x][$z]['option_name'] = $attribute['option_name'];
   $compeletearray[$x][$z]['option_value'] = $attribute['option_value'];
  }

我希望数组看起来像,

-stock_id

->选项名称

->选项值

->选项名称

->选项值

-stock_id

->选项名称

->选项值

->选项名称

->选项值

4

0 回答 0