关于文件处理的php空白页?

时间:2015-08-09 15:30:21

标签: php file file-read

我正在使用从w3cschools复制的代码。它适用于loaclhost xampp,但不适用于实时服务器。我在实时服务器上得到空白页面。 PHP代码是

<?php
    $myfile = fopen("products.txt", "r") or die("Unable to open file!");
    echo fread($myfile,filesize("products.txt"));
    fclose($myfile);
?>

1 个答案:

答案 0 :(得分:0)

通过在页面顶部添加代码解决了我的问题     函数ini_set( '的display_errors',1);     函数ini_set( 'display_startup_errors',1);     使用error_reporting(-1); 有人可以解释一下吗?这就是为什么它成功了。