我知道依赖注入背后的基本思想(例如,对于数据库),但我不知道如何在静态函数中使用它:

class Foo{
    private $id;
    private $class_variables,...;
    private $db;
    public function __construct($db,$id,$class_varibles,...)
    {
        $this->db=$db;
        //Assignments
    }

    public static function Get_By_ID($id)
    {
     //No DB-Connection here
     return new Foo(?);
    }
}

唯一的方法是这样做吗?
class Foo{
     ...
     public static function Get_By_ID($db,$id)
     {
        //Do work here!
        return new Foo($db,$id,$class_variables,...);
     }

对于几个静态函数来说,这似乎需要做很多额外的工作。
也:
$f = new Foo($db);

将只能使用保存在其中的“$db”创建新对象(私有$db)
$b = $f->Create_Bar();

你怎么能解决这个问题?
唯一的办法是:
$b = $f->Create_Bar($db_for_bar);

附加:如何使用静态函数?
$b = Foo::Create_Bar($db_for_foo,$db_for_bar);

我错过了什么?
(附加2:
 $f = new Foo($db); //Dependency Injection ($db is saved in $f, and is the database-link for example)
 $f->Create_Bar($db_for_bar); //OK - No Problem

但如果“create_bar”在“foo”中被称为
 $this->Create_Bar(???) //Where does the $db_for_bar come from?

最佳答案

这是一个很好的解决方案,我不明白你为什么说它不起作用:

class Foo{
     ...
     public static function Get_By_ID($db,$id)
     {
        return new Foo($db,$id,$class_variables,...);
     }

08-19 00:34