我必须失明。
以下是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)。