返回 select 元素的 php 函数

发布于 2024-12-21 18:58:55 字数 806 浏览 0 评论 0原文

public static function select($name, $options_array, $key_as_value=true, $selected="!NO!")
    {
        $html = "<select name='$name'>\n";

        foreach($options_array as $key => $val)
        {
            $option_value = ($key_as_value) ? $key : $val;
            $option_display = $val;
            $selected = ($selected != "!NO!" && $selected == $option_value) ? " SELECTED" : "";

            $option = "<option value='$option_value'$selected>$option_display</option>\n";
            $html .= $option;
        }

        $html .= "</select>\n";

        return $html;
    }

这是我的 PHP 代码,它生成一个 SELECT 元素,如果您传递 $selected ,它将选择所需的选项。问题是,将默认值设置为“!NO”看起来非常难看。但我也不能将其设置为 FALSE,因为 FALSE 是 0 的同义词,如果有一个值为“0”的选项,它将无法按预期工作。

对此有何建议?

public static function select($name, $options_array, $key_as_value=true, $selected="!NO!")
    {
        $html = "<select name='$name'>\n";

        foreach($options_array as $key => $val)
        {
            $option_value = ($key_as_value) ? $key : $val;
            $option_display = $val;
            $selected = ($selected != "!NO!" && $selected == $option_value) ? " SELECTED" : "";

            $option = "<option value='$option_value'$selected>$option_display</option>\n";
            $html .= $option;
        }

        $html .= "</select>\n";

        return $html;
    }

This is my PHP code that generates a SELECT element, if you pass $selected it will have the desired option selected. The problem is, having the default value as "!NO" looks very ugly. But I can't make it as FALSE either because FALSE is synonim for 0 and if there is an option with value "0" it won't work as expected.

Any suggestions for this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

偷得浮生 2024-12-28 18:58:55

只要使用三等运算符===,就可以使用FALSE。以下是一些很好的链接,解释了这一点:

You can use FALSE as long as you use the triple equal operator ===. Here are some good links explaining this:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文