0
点赞
收藏
分享

微信扫一扫

user_agent.php

半秋L 2023-05-22 阅读 62

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 

 <html> 

  <head> 

   <title> user_agent.php </title> 

   <meta name="Generator" content="EditPlus"> 

   <meta name="Author" content=""> 

   <meta name="Keywords" content=""> 

   <meta name="Description" content=""> 

  </head> 



  <body> 

 <?php 

 echo $_SERVER["HTTP_USER_AGENT"]; 

  ?>  

  <hr> 

 <?php 

 echo $_SERVER["SERVER_ADDR"]; 

 echo ':'; 

 echo $_SERVER["SERVER_PORT"]; 

  ?> 

  <hr> 

 <?php 

 echo $_SERVER["REMOTE_ADDR"]; 

 echo ':'; 

 echo $_SERVER["REMOTE_PORT"]; 

  ?> 

  </body> 

 </html>

举报

相关推荐

0 条评论