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 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 R语言卸载之后无法重装,显示电脑存在下载某些较大二进制文件行为,怎么办
  • ¥15 java 的protected权限 ,问题在注释里