PHP 创建新类实例 - 单例和工厂模式

发布于 2024-12-18 07:34:34 字数 617 浏览 0 评论 0原文

我有以下 PHP 类:

class Init {

private static $instance = NULL;

public function __construct(){
}

public static function __callStatic($name, $arguments){

    if (is_null(self::$instance)) {
        $class = '\\' . __NAMESPACE__ . '\Drivers\\' . $name;

        $reflection = new \ReflectionClass($class);
        self::$instance = $reflection->newInstanceArgs($arguments);

        return self::$instance;
    } else {
        return self::$instance;
    }
}

}

有没有其他方法可以调用实例化的类,并按该顺序使用参数数组,不使用反射? 我尝试过 call_user_func_array() 但似乎不起作用。

非常感谢您的帮助

I have the following PHP Class:

class Init {

private static $instance = NULL;

public function __construct(){
}

public static function __callStatic($name, $arguments){

    if (is_null(self::$instance)) {
        $class = '\\' . __NAMESPACE__ . '\Drivers\\' . $name;

        $reflection = new \ReflectionClass($class);
        self::$instance = $reflection->newInstanceArgs($arguments);

        return self::$instance;
    } else {
        return self::$instance;
    }
}

}

Is there any other way to call the instantiated class, with the arguments array in that order, without using Reflection ?
I've tried call_user_func_array() but it seems it doesn't work.

Thank you very much for your help

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

盗心人 2024-12-25 07:34:35

你可以这样尝试:

public class Example{
    private static $instance;
    public static function singleton($arguments)
        {
            if (!isset(self::$instance)) {
                echo 'Creating new instance.';
                $className = __CLASS__;
                self::$instance = new $className($arguments);
            }
            return self::$instance;
        }
}

You can try it like this:

public class Example{
    private static $instance;
    public static function singleton($arguments)
        {
            if (!isset(self::$instance)) {
                echo 'Creating new instance.';
                $className = __CLASS__;
                self::$instance = new $className($arguments);
            }
            return self::$instance;
        }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文