PHP Foreach 中的 Optgroup

PHP Optgroup in Foreach

我正在制作支付系统下拉系统,但遇到了移动支付选项组的问题。这是来自 MySQL.

的响应示例
[17]=>
array(5) {
["id"]=>
string(2) "34"
["region"]=>
string(1) "1"
["type"]=>
string(2) "18"
["mobile"]=>
string(1) "0"
["system"]=>
string(1) "1"
}
[18]=>
 array(5) {
["id"]=>
string(2) "35"
["region"]=>
string(1) "1"
["type"]=>
string(2) "19"
["mobile"]=>
string(1) "0"
["system"]=>
string(1) "1"
 }
[19]=>
array(5) {
["id"]=>
string(2) "36"
["region"]=>
string(1) "1"
["type"]=>
string(2) "20"
["mobile"]=>
string(1) "1"
["system"]=>
string(1) "1"
}
[20]=>
array(5) {
["id"]=>
string(2) "37"
["region"]=>
string(1) "1"
["type"]=>
string(2) "20"
["mobile"]=>
string(1) "2"
["system"]=>
string(1) "1"
}
[21]=>
array(5) {
["id"]=>
string(2) "38"
["region"]=>
string(1) "1"
["type"]=>
string(2) "20"
["mobile"]=>
string(1) "3"
["system"]=>
string(1) "1"
}

所以 ['type'] === 20 && ['mobile'] != 0 我需要制作带有标签移动支付的 optgroup..

if ( ! empty ( $regions ) && $regions !== NULL ) {

    $array = array();

    $im = 0;
    $i = 0;

    var_dump( $regions );

    foreach ( $regions as $key => $region ) {

        if ( (int) $region['mobile'] === 0 ) {
            $type  = $db->getTypeById( (int) $region['type'] );
            $value = $region['type'];

            echo "<option value='{$value}'>{$type}</option>";

        } else {

            //if ( $i < 1 )
            //echo '<optgroup label="Mobile payments">';

            $type  = $db->getMobileById( (int) $region['mobile'] );
            $value = $region['type'] . '_' . $region['mobile'];

            echo "<option value='{$value}'>{$type}</option>";

            //if ( $i <= $im )
            //echo '</optgroup>';

            $i++;

        }

    }

}

My dropdown

所以我的问题是在每个地区(大陆)的每个移动支付上不重复进行适当的分组

应该是这样的:https://jsfiddle.net/atc67mLe/24/

谢谢。

如果您不需要选项中间的optgroup,您可以在最后添加它。

if (!empty($regions)) {

    $mobileOptions = [];

    // Print normal options
    foreach ($regions as $region) {

        $typeId = $region['type'];

        if ($typeId == 20 && $region['mobile'] != 0) {
            $mobileOptions[] = $region;
        } else {
            $label = $db->getTypeById($typeId);
            echo "<option value='{$typeId}'>{$label}</option>";
        }
    }

    // Print mobile options
    if (!empty($mobileOptions)) {
        echo '<optgroup label="Mobile payments">';

        foreach ($mobileOptions as $region) {

            $mobileId = $region['mobile'];
            $typeId = $region['type'];
            $label  = $db->getMobileById($mobileId);

            echo "<option value=\"{$typeId}_{$mobileId}\">{$label}</option>";
        }
        echo '</optgroup>';
    }
}

这是未经测试的,但你明白了。只需将移动的分离到一个新数组中并循环遍历它们以在之后制作 optgroup。

不过,我可能会尝试改进初始 SQL 查询,以检索更有用的结果集,而不是 运行 每个选项在循环中的一堆额外查询。最好在您的第一个 SQL 查询中加入,以便同时获取付款方式名称。

您代码中的问题是您用 optgroup 包装了每个移动支付选项。您需要做的是将所有移动支付选项分组到数组或字符串中,然后在打印出来之前用 optgroup 将它们全部包装起来

这里有一个例子...

$options = '';
$mobileOptions = '';

foreach ($regions as $region) {

    $typeId = $region['type'];

    if ($typeId == 20 && $region['mobile'] != 0) {

        $label  = $db->getMobileById($region['mobile']);
        $mobileOptions .= sprintf('<option value="%s_%s">%s</option>',$typeId,$region['mobile'],$label);

    } else {

        $label = $db->getTypeById($typeId);
        $options .= sprintf('<option value="%s">%s</option>',$typeId,$label);

    }

}

echo $options;
if ($mobileOptions)
    echo '<optgroup label="Mobile payments">'.$mobileOptions.'</optgroup>';