0

我正在实现一个 PHP (5.4.4) 类,用于包含用于 HTML 呈现的类定义(以动态方式),所以如果我有一个带有两个按钮、四个文本输入和一个复选框的表单,我只包含 .php 文件对应于一个表单、一个文本框和一个按钮,而不是其他任何东西(每个 HTML 对象都用一个类表示)。

但是我有一个问题......我创建了一个名为 ComponentManager 的类来管理加载过程,使用以下代码:

    class ComponentManager {
    // component manager properties
    protected $components;

    // constructor for this object
    public function __construct() {
        if (!empty($_SESSION['components'])) {
            $this->components = explode(" ", $_SESSION['components']);
        } else {
            $this->components = null;
        }
    }

    // destructor for this object
    public function __destruct() {
        $this->components = null;
    }

    // getter for this object
    public function __get($property) {
        if ($property === "components") {
            return $this->components;
        }
    }

    // addComponents - add components to the current components list
    public function addComponents($components) {
        if (!empty($components)) {
            $list = explode(" ", $components);

            $count = sizeof($list);
            for ($i = 0; $i < $count; $i++) {
                if (!in_array($list[$i], $this->components)) {
                    $this->components[] = $list[$i];
                    $component = null;

问题是我似乎在使用 in_array() 函数时失败了,我不知道为什么......我的意思是,我过去曾多次将它用于不同的事情,但一直告诉我:

警告:in_array() 期望参数 2 为数组,在第34行的D:\apache\htdocs\webapps\skeleton\assets\scripts\manager.php中给出 null

我在测试代码中将 $components 作为空格分隔的列表传递,如下所示:

$page->addComponents("form checkbox textbox button range number");

我的意图是指定:如果组件列表不为空,则给我一个包含输入组件的数组,并且对于每个组件,当且仅当它不存在于组件数组中时才插入它。

我究竟做错了什么?

4

1 回答 1

4

显然,您的构造函数启动$this->componentsnull然后您尝试通过addComponents().

您可能打算启动它,$this->components = array();以便列表以空数组开始,从而允许您使用in_array()它?

于 2012-06-16T21:57:41.107 回答