使用变量而不是字符串时出现奇怪的SimpleXML错误

时间:2011-05-30 04:38:14

标签: php simplexml

我必须失明。

以下是API网址,我正在尝试处理。

http://upcoming.yahooapis.com/services/rest/?method=event.search&api_key=MY_API_KEY&location=sydney+australia

所以当我跑

$response = simplexml_load_file("http://upcoming.yahooapis.com/services/rest/?method=event.search&api_key=MY_API_KEY&location=sydney+australia");

然后结果很好。

但我需要以编程方式设置URL,所以我做了类似的事情。

$url = "http://upcoming.yahooapis.com/services/rest/?method=event.search&api_key=MY_API_KEY&location=sydney+australia";
$response = simplexml_load_file($url);

然后结果不同!这让我疯狂。有任何想法吗? (当然我将API密钥更改为MY_API_KEY)。

0 个答案:

没有答案