How to chain call functions by using a string containing that chain in PHP

若如初见. 提交于 2019-12-22 05:37:56

问题


I have a chain call like so:

$object->getUser()->getName();

I know that I can use a string to call a function on an object:

$functionName = 'getUser';
$object->$functionName() or call_user_func(array($object, functionName))

I was wondering if it was possible to do the same for a chain call? I tried to do:

$functionName = 'getUser()->getName';
$object->functionName();

But I get an error

Method name must be a string

I guess this is because the () and -> cannot be interpreted since they are part of a string? Is there any way I can achieve this without having to do:

$function1 = getUser;
$function2 = getName;
$object->$function1()->$function2();

The aim is to get an array of functions and to chain them, in order to call this chain on the given object, e.g.:

$functions = array('getCoordinates', 'getLongitude'); // or any other chain call
$functionNames = implode('()->',$functions);
$object->$functionNames()

回答1:


Let's start with a more neutral text format that's easy to handle:

$chain = 'getUser.getName';

And then simply reduce it:

$result = array_reduce(explode('.', $chain), function ($obj, $method) {
    return $obj->$method();
}, $object);

Note that you could even inspect the $obj to figure out whether $method is a method or a property or even an array index and return the value appropriately. See Twig for inspiration.




回答2:


I am trying to create a generic way of filtering objects in and array. Sometimes this filtering requires a chain call to compare specific fields with a given value.

I think that instead of inventing new solution you can use existing one like PropertyAccess Component from Symfony.



来源:https://stackoverflow.com/questions/30319950/how-to-chain-call-functions-by-using-a-string-containing-that-chain-in-php

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!