This article mainly introduces the method of forcing PHP Callable to specify the callback type. It is very good and has reference value. Friends who need it can refer to it
If a method needs to accept a callback method as a parameter, we You can write like this
<?php function dosth($callback){ call_user_func($callback); } function callback(){ echo 'do sth callback'; } dosth('callback'); ?>
Output:
do sth callback
But we cannot be sure whether the callback method can be called, so A lot of extra work needs to be done to check whether this callback method can be called.
Is there any better way to determine whether the callback method is callable?
We can use callable to force the specified parameter to be a callback type, which ensures that the callback method must be callable.
For example, the callback method is a non-existent method
<?php function dosth(callable $callback){ call_user_func($callback); } dosth('abc'); ?>
After execution, an error message is displayed: TypeError: Argument 1 passed to dosth() must be callable
The program cannot execute the internal processing of dosth. The parameter type has been checked and processed for protection.
And if the callable is removed
<?php function dosth($callback){ call_user_func($callback); } dosth('abc'); ?>
After execution, a warning is displayed: Warning: call_user_func() expects parameter 1 to be a valid callback, function 'abc' not found or invalid function name
The program can execute the internal processing of dosth, so a lot of extra work needs to be done to check whether this callback method can be called.
Therefore, if the parameter of the method is a callback method, callable should be added to force it to be specified as the callback type. This can reduce calling errors and improve the quality of the program.
Summary: The above is the entire content of this article, I hope it will be helpful to everyone's study.
Related recommendations:
PHP array addition operation and the difference from array_merge
##php Detailed explanation of PDO exception handling method
PHP built-in encryption function
The above is the detailed content of PHP implements a method to force the callback type to be specified based on Callable. For more information, please follow other related articles on the PHP Chinese website!