我正在尝试使用pokeapi.co api,当我在localhost上向它发出file_get_contents请求时它工作正常,但是当我将相同的文件放到我的服务器上时,它不起作用。我测试的另一个api已经工作了,我在我的域上的ini中设置了allow_url_open,但我仍然无法使file_get_contents工作。
<?php
$json = json_decode(file_get_contents('http://pokeapi.co/api/v2/pokemon/charmander'));
echo '<p>'.$json->id.'</p>';
?>