Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
617 views
Welcome To Ask or Share your Answers For Others

1 Answer

Try absolute path. Using dirname(__FILE__).

require(dirname(__FILE__) . '/config.php');

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share

548k questions

547k answers

4 comments

86.3k users

...