PHPize Online / SQLize Online  /  SQLtest Online

A A A
Share      Blog   Popular
Copy Format Clear
Copy Clear
Copy Format Clear
<?php $commands = [ 'hi' => fn($name) => 'hi, ' . $name, 'hello' => fn($name) => 'hello , ' . $name, 'etc' =>fn($name) => 'etc...', ]; echo $commands['hi']('John');
Show:  
Copy Clear