0

我有一个应该是数组的 $rawText 类属性。它在对象构造期间被分配了一个值,但是可能找不到该值,因此该变量仍然没有值。

class TextProcessor {
    public $rawText;
    public function __construct($idText) {
        if ($idText !== NULL) {
            $this->$rawText = $this->getRawText();
        }
    }
}

那我需要分配一个空数组吗?公共函数 __construct($idText) {

if ($idText !== NULL) {
    $this->$rawText = $this->getRawText(); 
} else {
    $this->$rawText = Array();
}

或者在定义属性时分配空数组可能会更好?

class TextProcessor {
        public $rawText = Array();
    }
4

2 回答 2

2
 class TextProcessor {
        public $rawText = array();
        public function __construct($idText) {
            if (! empty($idText)) {
                $this->rawText = $this->getRawText();
            }
        }
    }

我认为这就是你想要做的。

于 2013-10-08T06:47:08.833 回答
1

我认为构造方法通常用于定义一些私有变量。如果你想给 $rawText 一个新的值,在你实例化这个类之后,你可以写一个 set 属性方法来改变它的值。

于 2013-10-08T06:49:20.500 回答