fork download
  1. <?php
  2.  
  3. // your code goes here
  4.  
  5. function a()
  6. {
  7. return "b";
  8. }
  9.  
  10. if (($a=a())=="b")
  11. {
  12. echo "A $a";
  13. }
Success #stdin #stdout 0.02s 24152KB
stdin
Standard input is empty
stdout
A b