欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

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

程序员文章站 2022-04-08 22:29:49
...
  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. ?>
复制代码