gpt4 book ai didi

php - "current directory"符号不起作用

转载 作者:行者123 更新时间:2023-12-03 23:03:32 24 4
gpt4 key购买 nike

有人告诉我,指定要链接的文件的目录是一种很好的做法,即使该文件位于当前目录中也是如此。因此,例如,使用“./constants.inc.php”而不是“constants.inc.php”。这通常对我来说效果很好,除了在我的代码中的一个特定位置,当我使用 ./符号时,我收到以下 PHP 错误:

Warning: require(./constants.inc.php) [function.require]: failed to open stream: No such file or directory in C:\xampp\htdocs\widget_corp\includes\functions.inc.php on line 4

Fatal error: require() [function.require]: Failed opening required './constants.inc.php' (include_path='.;C:\xampp\php\PEAR;C:\xampp\htdocs\websites\mathverse\includes') in C:\xampp\htdocs\widget_corp\includes\functions.inc.php on line 4

写入“./constants.inc.php”会出现此错误,但“constants.inc.php”则不会(PHP 似乎可以很好地找到该文件)。有人可以告诉我为什么 ./符号在这种特殊情况下不起作用吗?也许我错过了一些非常简单的事情?

为了提供更多上下文(如果需要),错误出现在下面的函数中(第 2 行),该函数位于我的 PHP 函数文件(称为functions.inc.php)中,该文件位于包含目录内。 Constant.inc.php 文件也在includes 目录中。

谢谢。

function connect_to_db() {
require("./constants.inc.php");
$connection_id = mysql_connect(DB_SERVER, DB_USER, DB_PASS);
if (!$connection_id) {
die("Database connection failed: " . mysql_error());
}
$db_selection_was_successful = mysql_select_db(DB_NAME, $connection_id);
if (!$db_selection_was_successful) {
die("Database selection failed: " . mysql_error());
}
}

最佳答案

Writing "./constants.inc.php" gives this error, but "constants.inc.php" doesn't (PHP seems to find the file just fine). Can someone tell me why the ./ notation doesn't work in this particular case? Perhaps it's something very simple I'm missing?

我唯一的解释是 PHP 似乎在包含路径的某个目录中找到了 constants.inc.php 文件 - 最有可能是 C:\xampp\htdocs\websites\mathverse\includes

关于php - "current directory"符号不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7066223/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com