Miles' Blog
天涯何處無幹話,何必要講實務話
// Define function testfunction test($title, Callable $callable) { $callable($title);}// Define callable function$func = function($title) { echo $title;};// Executetest("hi", $func);
The above example will output:
hi