Trying to debug a composer error that's happening on my windows machine and not my linux server. Here's the code I'm trying to execute
$url = "https://packages.zendframework.com/packages.json";
var_dump(file_get_contents($url));
When I execute this, I get something like: http://grab.by/pSFI
As you can tell, the weird utf8 character at the beginning should not be there. It does not happen with non-secure protocol (but this url with 301 to secure anyways, so it's not possible to demonstrate).
Any ideas? Is it an openssl dll issue?