Here is my code:
if (file_exists('config.php')) {
require('config.php'); // This is line 38
}
Which somehow produces the error:
Warning: require(config.php) [function.require]: failed to open stream: No such file or directory in /path/name/file.php on line 38
How on earth is this possible?
Update: The following does work:
if (file_exists(getcwd(). '/config.php')) {
require(getcwd(). '/config.php');
}
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…