php file_get_contents()适用于测试服务器,但不适用于生产服务器

时间:2018-04-25 08:13:21

标签: php file-get-contents

我的测试服务器中的代码使用file_get_contents()从url获取状态。测试服务器链接是:     http://test1one.epizy.com/portal/test_api.php 它的工作原理应该给我适当的" Active"或"无效"来自网址的回复。

但它不能在生产服务器链接上工作并给出一个空白页面:     http://thecreamplatform.com/portal/test_api.php 链接页面包含以下代码行:     

<Button Content="v" Grid.Column="1" Command="{Binding FilterMenu, RelativeSource= {RelativeSource FindAncestor, AncestorType={x:Type DataGrid}}}"/>

上述代码中的xxxxxxxx是指手机号码。任何人都可以帮我解决导致问题的原因吗?提前谢谢。

1 个答案:

答案 0 :(得分:0)

检查http://php.net/file_get_contents。如果返回值为NULL,则禁用该功能。

启用错误报告和错误显示,以了解更多有关错误的信息。

error_reporting(~0);
ini_set('display_errors', 1);