fork download
  1. <?php
  2. $x = function ($a) {
  3. return $a * 2;
  4. };
  5.  
  6. echo assert(
  7. true === is_callable($x)
  8. );
  9.  
  10. echo "\n";
  11.  
  12. echo assert(
  13. 4 == $x(2)
  14. );
Success #stdin #stdout 0.01s 83008KB
stdin
Standard input is empty
stdout
1
1