我在 php 中创建了一个函数,我使用此函数的目标是在 HTML 选择标记中打印以下行。
<option value="<?php echo $key . $product[$name . '_id'] == $key ? 'selected' : null ?>"><?php echo $value ?></option>
这就是我想出的:
function Select($name){
$ids = array();
$values = array();
$query1 = $sql->query("SELECT * FROM '$name'");
while($fetch = $query1->fetch_assoc()){
array_push($ids, $fetch[$name . '_id']);
array_push($values, $fetch[$name]);
}
$names = array_combine($ids, $values);
foreach($names as $key => $value){
return '<option value="' . $key . '"' . $product[$name . '_id'] == $key ? 'selected' : null . '>' . $value . '</option>';
}
}
这似乎不起作用,但是当我将它直接放在 HTML 选择标记中时,它确实起作用。它看起来像这样:
<select name="type" class="chozen" id="type">
<?php
$brand_ids = array();
$brand_values = array();
$query1 = $sql->query("SELECT * FROM brands");
while($brand = $query1->fetch_assoc()){
array_push($brand_ids, $brand['brand_id']);
array_push($brand_values, $brand['brand']);
}
$brands = array_combine($brand_ids, $brand_values);
foreach($brands as $key => $value){
?>
<option value="<?php echo $key ?>"<?php echo $product['brand_id'] == $key ? 'selected' : null ?>><?php echo $value; ?></option>
<?php
}
?>
</select>
有人可以指出我哪里出错了,我想不通。