fork download
  1. <?php
  2. $x = function ($a) {
  3. return $a * 2;
  4. };
  5.  
  6. $a = $x(50);
  7. if ($a == 100){
  8. echo "Соточка";
  9. } else{
  10. echo $a;
  11. }
  12.  
  13.  
Success #stdin #stdout 0.01s 82880KB
stdin
Standard input is empty
stdout
Соточкаobject(Closure)#1 (1) {
  ["parameter"]=>
  array(1) {
    ["$a"]=>
    string(10) "<required>"
  }
}