Our url is remote url.i can run through Ip address.it thrown error as "file_get_contents failed to open stream: Connection refused".I have use this code.
code:
$html = file_get_contents('http://xx.xxx.xx.xx:xxxx/apps/index.php');
print_r($html);
var_dump($html);
What does this error?
A lot of hosts will prevent you from loading files from remote URLs for security reasons (allow_url_fopen setting in php.ini). It's better to use CURL to download the contents of the file.
Ref: Get file content via PHP cURL
HTH :)
Getting a page would require you to open a stream. Something like this:
For reference please check PHP.net: http://php.net/manual/en/function.file-get-contents.php