根据我的Symfony 3.4项目的回答,我想使用magic__call
方法,以便有一种通用的方式来调用存储库作为服务:
namespace AppBundleServices;
use DoctrineORMEntityManagerInterface;
class RepositoryServiceAdapter
{
private $repository=null;
/**
* @param EntityManagerInterface the Doctrine entity Manager
* @param String $entityName The name of the entity that we will retrieve the repository
*/
public function __construct(EntityManagerInterface $entityManager,$entityName)
{
$this->repository=$entityManager->getRepository($entityName)
}
public function __call($name,$arguments)
{
if(empty($arguments)){ //No arguments has been passed
$this->repository->$name();
} else {
//@todo: figure out how to pass the parameters
$this->repository->$name();
}
}
}
但我被这个问题困住了:
存储库方法将具有以下形式:
public function aMethod($param1,$param2)
{
//Some magic is done here
}
因此,如果我确切地知道将调用什么方法,我将以某种方式迭代数组$arguments
以便将参数传递给函数,我将任意传递参数,例如,如果我知道一个方法有 3 个参数我会使用:
public function __call($name,$arguments)
{
$this->repository->$name($argument[0],$argument[1],$argument[2]);
}
但这对我来说似乎不切实际,也不是一个具体的解决方案,因为一个方法可以有多个参数。我想我需要解决以下问题:
- 我将如何找出一个方法有多少个参数?
- 如何在迭代数组
$arguments
时传递参数?
从 PHP 5.6 开始,你有参数解包,它允许你在使用...
后完全按照你的操作,所以
$this->repository->$name($argument[0],$argument[1],$argument[2]);
成为。。。
$this->repository->$name(...$argument);
这将传递任何数字或参数,就好像它们是单个字段一样。