fork(1) download
  1. <?php
  2.  
  3. $op = '';
  4.  
  5. switch($op) {
  6. case '':
  7. print('Empty');
  8. break;
  9. case '*':
  10. print('Star');
  11. break;
  12. case '+':
  13. print('Plus');
  14. break;
  15. }
  16.  
  17.  
Success #stdin #stdout 0.02s 52488KB
stdin
Standard input is empty
stdout
Empty