0

我正在尝试使用PHP 函数 file_get_contents()。但是我试图打开的 URL 使用了一个端口,例如:

file_get_contents("http://212.21.323.32:8010")

我无法打开这个 URL,我该怎么做?

4

1 回答 1

3

就我个人而言,我会使用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
?>
于 2012-12-21T12:56:42.410 回答