drdzpknk76046 2018-06-29 11:18
浏览 101
已采纳

具有太多构造函数参数的PHP模型

In my current project I am implementing an Model-View-Presenter pattern. Most of my classes that represent domain objects have too many constructor arguments. Take this for example (NOTE: This is just a made-up class, just assume that models need too many arguments):

class Person {
    private $id;
    private $first_name;
    private $middle_name;
    private $last_name;
    private $birthdate;

    private $school_name;
    private $school_year_level;

    ... more properties

    public function __constructor($id, $first_name, $middle_name, $last_name, .. etc){
        ... some code to set the properties
    }
}

Suppose this class has many independent values needed for construction (7+ values), what good design can I use? The values are fetched rows from a database.

EDIT: To provide additional info, my model has three layers:

  • Models (Value Objects): Just a domain object with properties, and probably some methods for minimal processing of data.
  • Data Access Objects: Communicates with the database. CRUD. Creates Model objects from fetched data.
  • Service Objects: Provides an interface for the rest of the business logic interacts with data from the database.
  • 写回答

2条回答 默认 最新

  • douwei2966 2018-06-29 11:30
    关注

    You could use an associative array:

    public function __construct($params){
        $this->id = $params['id'];
        // etc ...
    }
    

    Or the spread operator if you are using PHP 5.6+:

    public function __construct(...$params){
        $this->id = $params[0];
        // etc ...
    }
    

    If you are under PHP 5.6 use func_get_args():

    public function __construct(){
        $params = func_get_args();
    
        $this->id = $params[0];
        // etc ...
    }
    

    I would use the associative array solution because I prefer having the keys. Note that there are many other ways to solve your "issue" as @ivanivan said in his comment.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 如何在scanpy上做差异基因和通路富集?
  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?
  • ¥15 c++头文件不能识别CDialog