"If a worker wants to do his job well, he must first sharpen his tools." - Confucius, "The Analects of Confucius. Lu Linggong"
Front page > Programming > Can You Pass a Function as a Parameter in PHP?

Can You Pass a Function as a Parameter in PHP?

Published on 2024-11-08
Browse:798

Can You Pass a Function as a Parameter in PHP?

Can You Pass a Function as a Parameter in PHP?

In PHP, passing a function as a parameter is feasible if you are running PHP version 5.3.0 or later. This functionality is facilitated by using anonymous functions, as detailed in the PHP manual.

To pass a function as a parameter, define the receiving function with the parameter type set to accept an anonymous function. For instance, the following code snippet declares the exampleMethod function, which takes an anonymous function as its argument:

function exampleMethod($anonFunc) {
    //execute anonymous function
    $anonFunc();
}

This function can be invoked with an anonymous function passed as its argument, enabling you to execute the anonymous function's code within the exampleMethod. The following example demonstrates how this works:

exampleMethod(function() {
    // code to be executed within exampleMethod
});
Release Statement This article is reprinted at: 1729336335 If there is any infringement, please contact [email protected] to delete it
Latest tutorial More>

Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.

Copyright© 2022 湘ICP备2022001581号-3