Home > Article > Backend Development > What to do if there is an error in php include
Solution to php include error: 1. Check whether the location of the include file is correct; 2. Check whether the read permission of the included file is open.
The operating environment of this article: Windows7 system, PHP7.1 version, DELL G3 computer
What should I do if there is an error in php include?
Solution to include file error in php script
Often when the php page uses include, require, require_once to include some pages in other locations, errors will occur, such as the page is not found , or permissions are not allowed, etc., you can eliminate it according to the following methods
1. When an error similar to "File Not Found" occurs, check whether the location of the include file is correct. The following is the original words of the PHP manual page:
Files for including are first looked in include_path relative to the current working directory and then in the directory of the current script. E.g. if your include_path is libraries, current working directory is /www/, you included include/ 1z0-147 .php and there is include "b.php" in that file, b.php is first looked in /www/libraries/ and then in /www/include/. If filename begins with ./ or ../, it is looked only in include_path relative to the current working directory.
2. When an error similar to permission deny occurs, follow the following methods to eliminate it
a) Check whether the read permission of the included file is open
b) Check whether the included file is open Whether the x permission of each directory on the file path is turned on, this permission determines whether the directory can be browsed.
Recommended learning: "PHP Video Tutorial"
The above is the detailed content of What to do if there is an error in php include. For more information, please follow other related articles on the PHP Chinese website!