I’m having trouble using Zend HTTP on a URL:
$client = new Zend_Http_Client('http://xxfire_killumiex.api.channel.livestream.com/2.0/info.json');
$feed = $client->request()->getBody();
For some reason, this gives me an error…
Invalid URI supplied
Whats wrong this this specific url?
The underscore.
From RFC 1912
Edit
After doing some more reading, it seems that Zend may be wrong in this case.
See Can (domain name) subdomains have an underscore "_" in it?
According to ZF-9671, you might be out of luck, though I’ve re-opened the issue.
My suggestion in the meantime; Create your own HTTP client class like this