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.
有什么方法可以获取我的服务器 IP?我正在编写一个需要我的服务器 IP 作为参数的命令?尝试过request_stack,但它没有按我的预期工作。
request_stack
我认为您可以请求返回服务器 IP 的外部资源,您可以在 Symfony 命令中使用以下代码执行此操作:
$ch = curl_init(); curl_setopt($ch, CURLOPT_URL, 'ipinfo.io/ip'); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); $ip = curl_exec($ch);
我希望这可以帮助你