user_agent.php 278 B

1234567891011
  1. <?php
  2. function user_agent_result()
  3. {
  4. return array(
  5. "special_response" => array(
  6. "response" => $_SERVER["HTTP_USER_AGENT"],
  7. "source" => null
  8. )
  9. );
  10. }
  11. ?>