我有一个基于工厂的课程,例如:
class AisisCore_Factory_Pattern {
protected static $_class_instance;
protected static $_dependencies;
public static function get_instance(){
if(self::$_class_instance == null){
$_class_instance = new self();
}
return self::$_class_instance;
}
public static function create($class){
if(empty($class)){
throw new AisisCore_Exceptions_Exception('Class cannot be empty.');
}
if(!isset(self::$_dependencies)){
throw new AisisCore_Exceptions_Exception('There is no dependencies array created.
Please create one and register it.');
}
if(!isset(self::$_dependencies[$class])){
throw new AisisCore_Exceptions_Exception('This class does not exist in the dependecies array!');
}
if(isset(self::$_dependencies[$class]['params'])){
$new_class = new $class(implode(', ', self::$_dependencies[$class]['params']));
return $new_class;
}else{
$new_class = new $class();
return $new_class;
}
}
public static function register_dependencies($array){
self::$_dependencies = $array;
}
}
现在有了这个课程,我们会做以下几点:
首先设置我们的班级列表及其依赖项
$class_list = array(
'class_name_here' => array(
'params' => array(
'cat'
)
)
);
注册:
AisisCore_Factory_Pattern::register_dependencies($class_list);
这意味着每次调用create方法并将其传递给类时,我们都会返回该类的新实例,同时还传入该类的任何参数。
创建Clas
要创建课程,我们所做的就是:
$object = AisisCore_Factory_Pattern::register_dependencies('class_name_here');
现在我们已经创建了一个新的类实例:class_name_here
并将其设为cat
的参数,现在我们要访问其方法的所有工作都是$object->method()
< / p>
我对这一切的疑问是:
如果参数是数组怎么办?我该如何处理?
一种解决方案可能是:
public static function create($class){
if(isset(self::$_dependencies[$class]['params'])){
if(is_array(self::$_dependencies[$class]['params'])){
$ref = new ReflectionClass($class);
return $ref->newInstanceArgs(self::$_dependencies[$class]['params']);
}
$new_class = new $class(implode(', ', self::$_dependencies[$class]['params']));
return $new_class;
}else{
$new_class = new $class();
return $new_class;
}
}
答案 0 :(得分:0)
在这种情况下,最好的办法是使用反射类创建一个传递参数数组的新实例。见reflectionclass::newinstanceargs和 用户评论有类似的内容:
$ref = new ReflectionClass($class);
return $ref->newInstanceArgs(self::$_dependencies[$class]['params']);
这应该像call_user_func_array一样工作,因为数组中的每个值都作为函数的不同参数传递。