0

我想知道在我以后在其他地方使用的数组中声明我的成员变量是否是不好的约定(在下面的代码中,我传递给 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)。

4

1 回答 1

0

它是否不好取决于您遵循的编码指南。他们中的大多数人每行只允许一个操作,但你有两个。

PSR-2 标准为例。

它也不是那么容易阅读,因为它并不常见。

于 2012-05-25T15:23:33.877 回答