0

我正在尝试从我的 Adob​​e Media 服务器获取数据。例如,当我使用浏览器导航到此 URL 时:

http://misite.com:1111/admin/getLiveStreamStats?auser=myuname&apswd=mypwd&appInst=live&stream=srd

misite.com应该是localhost。我得到了浏览器中显示的内容。现在我试图在我的 php 文件中获取这些内容:

$url = 'http://misite.com:1111/admin/ping?auser=myuname&apswd=mypwd';
$contents = file_get_contents($url);
echo $contents;

//OR:

print($contents)

但这给了我一个空白页。我检查了我的源代码,它返回为空。我应该怎么办?

有什么建议么?

4

1 回答 1

0
$url = 'http://misite.com:1111/admin/ping?auser=myuname&apswd=mypwd';
$contents = file_get_contents($url);
echo $contents;

这没有文件可以参考。注意 ping 不是 ping.php

$url = 'http://example.com/somephpscript.php?auser=myuname&apswd=mypwd';
$contents = file_get_contents($url);
echo $contents;
于 2014-08-24T18:30:53.777 回答