Heim >Backend-Entwicklung >PHP-Tutorial >php用静态类实现获取客户端IP地址的方法

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

WBOY
WBOYOriginal
2016-07-25 09:03:121038Durchsuche
  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. ?>
复制代码


Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn