私はarray
:$categories = array("item1", "item2", "item3");
私も3つの配列を持っています:$item1Array = array("hi", "items");
、、
私はこのようなforeachを述べました$item2Array = array("hi", "items");
:$item3Array = array("hi", "items");
foreach ($categories as &$value) {
echo "<optgroup label='" . $value . "'>';
$nextArray = $value . "Array";
foreach($nextArray as &$nextValue) {
echo "<option value='" . $nextValue . "'>" . $nextValue . "</option>";
}
}
ただし、エラーが発生しますWarning: invalid argument supplied for foreach()
。これを達成する方法はありますか?