未定义的变量错误php类构造

时间:2017-05-21 07:44:30

标签: php class constructor

我正在考虑:

“注意:未定义的变量:”...

中的single_ad_data

“注意:未定义的变量:”...

中的full_ad_data
class Example {
public $page;
public $test_array, $single_ad_data, $get_full_ad_data=array(); 

public function __construct (array $test_array) {
    $this->test_array = $test_array;
    $this->single_ad_data = $single_ad_data;
    $this->full_ad_data = $full_ad_data;
    $this->page = $page=new DOMDocument;
   }
}

1 个答案:

答案 0 :(得分:0)

您需要分配变量值。看起来你想在实例化一个新类时设置它们:将它们作为参数传递给构造函数,就像你使用test_array一样。