5菲律宾比索。将数组声明为类成员的两种方法 [已关闭]
2022-08-30 18:34:44
将数组声明为类成员时,应以哪种方式完成?
class Test1 {
private $paths = array();
public function __construct() {
// some code here
}
}
或
class Test2 {
private $paths;
public function __construct() {
$this->paths = array();
// some code here
}
}
就良好做法和绩效而言,哪一个更好?你会推荐什么?