fork download
  1. <?php
  2.  
  3. $whatDoesTheFunctionReturns = test();
  4.  
  5. function test(){
  6. $a = 10;
  7. $b = 20;
  8. return $b;
  9. }
  10.  
  11. echo $whatDoesTheFunctionReturns;
Success #stdin #stdout 0.02s 52472KB
stdin
Standard input is empty
stdout
20