我正在尝试使用PHP 函数 file_get_contents()
。但是我试图打开的 URL 使用了一个端口,例如:
file_get_contents("http://212.21.323.32:8010")
我无法打开这个 URL,我该怎么做?
就我个人而言,我会使用cURL
和使用CURLOPT_PORT
来设置您要连接的端口。
<?php
$cURL = curl_init('http://www.google.co.uk'); //Initialise cURL with the URL to connect to
curl_setopt($cURL, CURLOPT_PORT, 80); //Set the port to connect to
curl_setopt($cURL, CURLOPT_RETURNTRANSFER, true); //Get cURL to return the HTML from the curl_exec function
$HTML = curl_exec($cURL); //Execute the request and store the result in $HTML
echo $HTML; //Output the HTML
?>