Notice: Use of undefined constant DOCUMENT_ROOT - assumed 'DOCUMENT_ROOT' in /home/syole/public_html/includes/config.php on line 21
Notice: Use of undefined constant DOCUMENT_ROOT - assumed 'DOCUMENT_ROOT' in /home/syole/public_html/includes/config.php on line 22
PHP已经看到一个未定义的常量,它将其
我有一个名为Notes.php .It的类文件,它确实有一个namespace,当我执行require_once时,它会给我一个警告所需的文件,因为url是正确的,而且在哪里也找不到。下面是类文件
目录树是:
Class
Notes
Notes.php
Database
Db.php
下面是类代码
#Declare Namespace for the Notes class
namespace Dashboard\Api\Notes;
require_once '../Database/Db.php';
use Dashboa
我的http服务器(实际上是Apache2.4.7和PHP5.5.8-2)在debian上运行时遇到了问题。如果没有启用display_errors,服务器就会像预期的那样返回一个500-http错误,但是当使用php.ini或apache指令启用display_errors时,服务器只会向客户端返回一个空白(或在出现错误之前发生的任何输出)。我无法以任何方式显示实际发生的php错误。
这里我有来自phpinfo()的配置部分
error_reporting 0
display_errors On
display_startup_errors On
html