我想在php中定义和初始化数组,然后将它们添加到多维数组中。我在网上搜索了很多,但找到了在多维数组体内完成子数组初始化的解决方案。我有 12 个数组,每个数组有 90 个值。数据是数字的。
我从数据库中选择了产品类别的数据并将它们保存在单独的数组中,如下所示:
$books_cds = array();
$books_cds[] = $row1['books_cds'];
$mobile_computer = array();
$mobile_computer[] = $row2['mobile_computer'];
$clothes_shoes = array();
$clothes_shoes[] = $row3['clothes_shoes'];
现在我想将 $books_cds[ ]、$ mobile_computer[ ] 和 $clothes_shoes[ ] 保存在一个多维数组中。然后想要通过它在该数组中的索引从多维数组访问 $books_cds[ ] 。我该怎么做?