file_get_contents适用于localhost,但不适用于服务器

时间:2017-10-26 01:54:38

标签: php api file-get-contents

我正在尝试使用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>';
?>

0 个答案:

没有答案