编程语言
首页 > 编程语言> > 如何在PHP Web服务中获取客户端的IP地址?

如何在PHP Web服务中获取客户端的IP地址?

作者:互联网

参见英文答案 > How to get the client IP address in PHP                                     30个
我开发了一个PHP Web服务.我想记录使用此Web服务的WS客户端的所有传入连接.如何获取客户端的IP地址?的价值

$_SERVER['HTTP_CLIENT_IP']

好像总是空着的.

解决方法:

这应该是你想要的:

$_SERVER['REMOTE_ADDR']

The IP address from which the user is
viewing the current page.

http://php.net/manual/en/reserved.variables.server.php

标签:php,logging,web-services,ip-address
来源: https://codeday.me/bug/20190916/1808601.html