Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已与 wifi 路由器连接,我在 Firefox 中设置代理连接以检查 REMOTE_PORT 提供哪个端口
echo $_SERVER['REMOTE_PORT'];
我正在使用它来获取我正在使用的代理端口。但它提供了随机端口。我正在使用 ip : 123.134.167.208 Port : 6675 上面的代码返回 53603 Port 这是不正确的。
那是因为您使用的代理正在将数据转发到另一个端口,因此它不会将同一端口用于入站/出站连接
计算机(firefox)<--> 端口 6657 上的代理 <-portforwarding-> 随机端口 53603 上的代理 <--> 使用 PHP 代码的服务器