我正在尝试使用IP地址来获取file_get_contents
$url = "http://82.33.33.100:8001"; // Ip address, it example IP address. ( not correct ip address here)
$data =file_get_contents($url);
我收到以下错误:
无法打开流:HTTP请求失败! HTTP / 1.1 400错误请求 在第10行的/var/www/html/test.php中
我在Ubuntu上安装了Apache。如果我使用google.com并且它工作正常。如果我使用 CURL ,我的 NO ROUTE 错误。
有什么想法吗?