15

注: この質問を書いたおかげで、私は新しい言語機能の使用に過度に熱中していたことに気づきました。はるかにクリーンな解決策は、代わりに戦略パターンを使用することでした... それでも、この問題を解決する適切な方法があるかどうか知りたいです。

TL;DR: すべての種類の callable を手動で型チェックすることなく、PHP のジェネリック Callable について考えることができますか?

PHP 5.4 では、新しいタイプヒント callable があります。これはとても楽しそうです。これを次のように活用しようと考えました。

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

これまでの私の考えは、callable で一連の型チェックを行い、それからどの Reflection* クラスを使用するかを推測することでした。

<?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.
?>

さて、私には、これは非常に複雑に感じます。ここでやろうとしていることを達成するための何らかの近道がありませんか? どんな洞察も歓迎されます:)

4

3 に答える 3

5

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);
于 2015-09-03T01:50:38.630 に答える
0

引数で配列を渡すことができ、配列値をカウントして、コールバック関数に渡された引数を知ることができます。

于 2013-05-21T06:06:18.347 に答える