如何获取运行时确定的可调用参数数?

2022-08-30 23:41:19

注意:通过编写此问题,我已经发现我对使用新的语言功能过于执着。更干净的解决方案是使用策略模式来代替...不过,我很好奇是否有适当的方法来解决这个问题。

TL;DR:你能在PHP中反思一个通用的可调用,而不诉诸于手动类型检查各种可调用的吗?

在 PHP 5.4 中,我们有了一个新的类型提示:可调用。这似乎很有趣。我想我会通过以下方式来利用这一点:

<?php
    public function setCredentialTreatment(callable $credentialTreatment) {
       // Verify $credentialTreatment can be used (ie: accepts 2 params)
       ... magic here ...
    }
?>

到目前为止,我的思路是对可调用对象进行一系列类型检查,并从Reflectrection*类中推断出要使用的类型:

<?php
if(is_array($callable)) {
    $reflector = new ReflectionMethod($callable[0], $callable[1]);
} elseif(is_string($callable)) {
    $reflector = new ReflectionFunction($callable);
} elseif(is_a($callable, 'Closure') || is_callable($callable, '__invoke')) {
    $objReflector = new ReflectionObject($callable);
    $reflector    = $objReflector->getMethod('__invoke');
}

// Array of ReflectionParameters. Yay!
$parameters = $reflector->getParameters();
// Inspect parameters. Throw invalidArgumentException if not valid.
?>

现在,对我来说,这感觉太复杂了。我是否错过了某种捷径来实现我在这里想要做的事情?任何见解都将受到欢迎:)


答案 1

我创建了一个更短的版本,其工作方式与call_user_func()非常相似,并在PHP手册中针对回调/可调用的所有不同类型进行了测试。这样,您几乎可以在任何地方使用它。call_user_func() 不只接受对象,而且这个函数也应该这样做对我来说也没有意义,因为它只处理回调。

下面包含有关如何使用它的测试和建议,我希望这有帮助:

function getNrOfParams($callable)
{
    $CReflection = is_array($callable) ? 
    new ReflectionMethod($callable[0], $callable[1]) : 
    new ReflectionFunction($callable);
    return $CReflection->getNumberOfParameters();
}

测试及其整体结果:

<?php   
class Smart
{
    public function __invoke($name)
    {

    }

    public function my_callable($one, $two, $three)
    {

    }

    public static function myCallableMethod($one, $two) 
    {

    }

    public static function who()
    {
            echo "smart the parent class";
    }
}

class Smarter extends Smart
{
    public static function who()
    {
        echo "smarter";
    }
}

function my_ca($one)
{

}

function getNrOfParams($callable)
{
    $CReflection = is_array($callable) ? new ReflectionMethod($callable[0], $callable[1]) : new ReflectionFunction($callable);
    return $CReflection->getNumberOfParameters();
}
// Test 1 Callable Function
echo "Test 1 - Callable function:" . getNrOfParams('my_ca');

// Test 2 Static method
echo " Test 2 - Static class method:" . getNrOfParams(array('Smart', 'myCallableMethod'));

// Test 3 Object method
$smart = new Smart();
echo " Test 3 - Object method:" . getNrOfParams(array($smart, 'my_callable'));

// Test 4 Static method call (As of PHP 5.2.3)
//echo " Test 4 - Static class method call:" . getNrOfParams('Smart::myCallableMethod');
// Calling a static method this way does not work in ReflectionFunction.
// However, Test 2 provides a solution.

// Test 5 Relative static method (As of PHP 5.3.0)
//echo " Test 5 - Relative static class method:" . getNrOfParams(array('Smarter', 'parent::who'));
// Calling a relative static method doesn't work either. ReflectionMethod lacks support.
// All other tests work.

// Tesy 6 __invoke
echo " Test 6 - __invoke:" . getNrOfParams(array($smart, '__invoke'));

// Test 7 Closure
$closure = function($one, $two, $three)
{
    // Magic
};
echo " Test 7 - Closure:" . getNrOfParams($closure);

答案 2

我不这么认为。如果需要泛型解决方案,则需要检查所有可调用类型。

以下函数可用于获取 PHP 中任何通用可调用的实例:ReflectionFunctionAbstract

function reflectionOf(callable $callable): ReflectionFunctionAbstract
{
    if ($callable instanceof Closure) {
        return new ReflectionFunction($callable);
    }
    if (is_string($callable)) {
        $pcs = explode('::', $callable);
        return count($pcs) > 1 ? new ReflectionMethod($pcs[0], $pcs[1]) : new ReflectionFunction($callable);
    }
    if (!is_array($callable)) {
        $callable = [$callable, '__invoke'];
    }
    return new ReflectionMethod($callable[0], $callable[1]);
}

然后可以按如下方式获取参数数:

reflectionOf($func)->getNumberOfParameters();

希望这对某人有所帮助。这个答案可能很晚才到,但其他解决方案都没有为通用可调用提供完整的覆盖。


推荐