How to get the my system's IP address

前端 未结 4 543
野性不改
野性不改 2020-12-22 11:50

How do I get my system\'s IP address?

I am using $ip_address=$_SERVER[REMOTE_ADDR];, but it returns my localhost IP address instead of my system\'s IP

4条回答
  •  旧时难觅i
    2020-12-22 12:02

    $_SERVER['SERVER_ADDR']

    See the php docs for a full list of stuff you might find in the $_SERVER superglobal.

提交回复
热议问题