当前位置:Gxlcms > PHP教程 > php用静态类实现获取客户端IP地址的方法

php用静态类实现获取客户端IP地址的方法

时间:2021-07-01 10:21:17 帮助过:3人阅读

  1. /**

  2. * Miscellaneous utility methods.
  3. */
  4. final class Utils {

  5. private function __construct() {

  6. }

  7. /**

  8. * Get IP address
  9. * @return string IP address string
  10. */
  11. public static function getIpAddress() {
  12. return $_SERVER["REMOTE_ADDR"];
  13. }
  14. }
  15. ?>

2、调用

  1. $last_login_ip = Utils::getIpAddress();
  2. ?>

人气教程排行