0

我是服务器管理员和 PHP 的新手,所以我很抱歉。这个真的让我卡住了。我重新启动了 EC2 服务器,但仍然没有运气。

PHP 文件

<?php
require_once "System.php";
var_dump(class_exists('System', false));
?>

终端(有效)

[ec2-user@domU-12-31-39-10-26-22 current]$ php phpcheck.php
bool(true)

浏览器 - 它没有找到文件

Warning: require_once(System.php): failed to open stream: No such file or directory in /etc/httpd/opt/app/current/phpcheck.php on line 2 Fatal error: require_once(): Failed opening required 'System.php' (include_path='.:/home/ec2-user/pear/share/pear') in /etc/httpd/opt/app/current/phpcheck.php on line 2
4

1 回答 1

2

当我通常遇到这些问题时,我只需添加以下内容:

require_once(dirname(__FILE__) . '/System.php');

这样您就可以获得文件的完整路径。

但是,您的 include_path 看起来有点不稳定。-kc

于 2012-09-18T14:44:13.427 回答