【发布时间】:2018-10-06 07:52:05
【问题描述】:
基于我的 Symfony 3.4 项目中的answer,我想到了使用神奇的__call 方法,以便有一种将存储库作为服务调用的通用方法:
namespace AppBundle\Services;
use Doctrine\ORM\EntityManagerInterface;
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 doctrine-orm symfony-3.4