我想知道在我以后在其他地方使用的数组中声明我的成员变量是否是不好的约定(在下面的代码中,我传递给 insertArray() 函数)。这是我的代码:
class myClass{
private $ID;
private $name;
private $type;
private $catID;
private $isDefault;
private $isRequired;
function __construct($compID = 0, $catID = 0, $name = '', $type = '', $default = false, $required = false){
$myArray = array(
'name' => ($this->name = $name),
'type' => ($this->type = $type),
'catID' => ($this->catID = $catID),
'isDefault' => ($this->isDefault = $default),
'isRequired' => ($this->required = $required)
)
self::insertArray($myArray);
}
}
在 $myArray 中定义我的成员变量是不是很糟糕?我很确定在 php 中,形式 ($this->value = $value) 的语法会将 $value 存储在 $this->value 中,然后只计算为 ($this->value)。