3v4l.org

run code in 300+ PHP versions simultaneously
<?php $names = array('Hugo', 'Manuel'); print_r( array_map( function($name) { return "Olá, " . ucfirst($name) . "!"; }, $names) ); function getGreetingFunction() { $timeOfDay = "morning"; return (function($name) use (&$timeOfDay) { $timeOfDay = ucfirst($timeOfDay); return ("Bom/boa $timeOfDay, $name!"); }); }; $greetingFunction = getGreetingFunction(); echo $greetingFunction("Frederico"); // "Bom dia, Frederico!"

preferences:
39.38 ms | 402 KiB | 5 Q