fork download
  1. <?php
  2. function a($s){
  3. echo $s.'hehe';
  4. }
  5. function ab($s){
  6. echo $s.'heffffhe';
  7. }
  8.  
  9. $a = 'a';
  10. $b = 'ab';
  11.  
  12. $a(12);
  13. $b(12);
  14. // your code goes here
Success #stdin #stdout 0.03s 26040KB
stdin
Standard input is empty
stdout
12hehe12heffffhe