fork download
  1. <?php
  2.  
  3. if (strstr($_SERVER["HTTP_USER_AGENT"], "MSIE")) {
  4. echo "IE";
  5. } else {
  6. echo "Outro";
  7. }
  8.  
  9. ?>
Success #stdin #stdout #stderr 0.01s 20568KB
stdin
Standard input is empty
stdout
Outro
stderr
PHP Notice:  Undefined index: HTTP_USER_AGENT in /home/JgZnSG/prog.php on line 3