Miles' Blog

天涯何處無幹話,何必要講實務話

Callable

Example

// Define function test
function test($title, Callable $callable) {
$callable($title);
}

// Define callable function
$func = function($title) {
echo $title;
};

// Execute
test("hi", $func);

The above example will output:

hi
0%