|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2021-07-20 14:15 UTC] cmb@php.net
-Status: Open
+Status: Feedback
-Assigned To:
+Assigned To: cmb
[2021-07-20 14:15 UTC] cmb@php.net
[2021-08-01 04:22 UTC] php-bugs at lists dot php dot net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Fri Dec 12 14:00:02 2025 UTC |
Description: ------------ I cannot easily work out whether a function can be successfully called with a given set of values if there are scalar type hints. Ideally I'd like to do this: <?php function foo(string $a, callable $bar) { } //I want to check to see whether these arguments can be used to call the function $arguments = [123, 'not-callable!']; //Or these valid arguments // $arguments = ['A string', function() {}]; //This should pass the check // To do this, I need to check to see whether the arguments match the type hint $reflect = new ReflectionFunction('foo'); $valid = true; foreach ($reflect->getParameters() as $i => $param) { if ($param->getType()) { //check to see if the type $arguments[$i] matches the type hint //e.g. would evaluate to is_a('string', 123); if (!is_a($param->getType()->getName(), $arguments[$i])) $valid = false; } } echo $valid ? 'Function foo can be called with supplied $arguments' : '$arguments do not match function definition.'; ?> However, because is_a does not allow scalar types in the first argument, it's not possible. Instead, I need to do this: <?php function foo(string $a, callable $bar) { } //I want to check to see whether these arguments can be used to call the function $arguments = [123, 'not-callable!']; //Or these valid arguments // $arguments = ['A string', function() {}]; //This should pass the check // To do this, I need to check to see whether the arguments match the type hint $reflect = new ReflectionFunction('foo'); $valid = true; foreach ($reflect->getParameters() as $i => $param) { if ($param->getType()) { $type = $param->getType()->getName(); if ($type == 'string' && !is_string($arguments[$i])) $valid = false; else if ($type == 'int' && !is_int($arguments[$i])) $valid = false; else if ($type == 'callable' && !is_callable($arguments[$i])) $valid = false; else if ($type == 'array' && !is_array($arguments[$i])) $valid = false; } } echo $valid ? 'Function foo can be called with supplied $arguments' : '$arguments do not match function definition.'; ?> Or, alternatively, this hacky as hell workaround: <?php function foo(string $a, callable $bar) { } //I want to check to see whether these arguments can be used to call the function $arguments = [123, 'not-callable!']; //Or these valid arguments // $arguments = ['A string', function() {}]; //This should pass the check // To do this, I need to check to see whether the arguments match the type hint $reflect = new ReflectionFunction('foo'); $valid = true; foreach ($reflect->getParameters() as $i => $param) { if ($param->getType()) { if (!call_user_func('is_' . $param->getType()->getName(), $arguments[$i])) $valid = false; } } echo $valid ? 'Function foo can be called with supplied $arguments' : '$arguments do not match function definition.'; ?> Ideally, is_a should support scalar types but perhaps adjusting reflection to allow $param->getType()->willAccept($value); or similar would work as well because at the moment, to determine this, we need to do two checks: One for $param->getClass() and another for $param->getType()