Home  >  Article  >  Backend Development  >  Can You Pass a Function as a Parameter in PHP?

Can You Pass a Function as a Parameter in PHP?

Susan Sarandon
Susan SarandonOriginal
2024-10-19 19:14:02142browse

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:

<code class="php">function exampleMethod($anonFunc) {
    //execute anonymous function
    $anonFunc();
}</code>

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:

<code class="php">exampleMethod(function() {
    // code to be executed within exampleMethod
});</code>

The above is the detailed content of Can You Pass a Function as a Parameter in PHP?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn