我如何在我的php中修复函数“require”中的地址。它排除故障和错误说:
警告:require(..)无法打开流:没有这样的文件或目录。
文件“db_connection.php”完全正常 - 它有“app_config.php” - >需要但当我需要“register_user.php”中的“db_connect.php”时,我得到所有这些错误并且地址匹配..
注册用户php文件包含
要求“../../../ app_configuration / db_connect / db_connection.php”;
db_connection的内容是
要求“../../app_configurations/definitions/app_config.php”;
答案 0 :(得分:1)
请勿使用../../
语句。
改为使用include $_SERVER['DOCUMENT_ROOT'].'/assets/app_configuration/db_connection/db_connection.php'
。