【问题标题】:Adapting a class Using php's __call method: Passing the parameters使用 php 的 __call 方法适配一个类:传递参数
【发布时间】: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]);
        }

但这似乎不切实际,对我来说不是一个具体的解决方案,因为一个方法可以有多个参数。我想我需要解决以下问题:

  1. 如何知道一个方法有多少个参数?
  2. 如何在迭代数组$arguments时传递参数?

【问题讨论】:

    标签: php doctrine-orm symfony-3.4


    【解决方案1】:

    从 PHP 5.6 开始,您拥有 argument unpacking,它允许您在使用 ... 之后做您想做的事情,所以

    $this->repository->$name($argument[0],$argument[1],$argument[2]);
    

    变成……

    $this->repository->$name(...$argument);
    

    这将传递任何数字或参数,就好像它们是单独的字段一样。

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 2012-04-21
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2018-04-10
      • 1970-01-01
      相关资源
      最近更新 更多