Home > Article > Backend Development > Can I Include All PHP Files from a Directory in One Go?
Including PHP Files from a Directory
Including individual PHP files can be a tedious task when dealing with a large number of files. This question explores a potential solution to this problem, specifically asking if it's possible to include all files from a directory in PHP.
The provided answer suggests a practical approach using PHP's glob() function. This function returns an array of files matching a specific pattern. In this case, the pattern is "classes/*.php", which represents all PHP files within the "classes" directory.
To include these files, the following code can be used:
<code class="php">foreach (glob("classes/*.php") as $filename) { include $filename; }</code>
This code iterates through the array of files returned by glob() and includes each file into the current script. This method provides an efficient way to include multiple files from a directory without having to specify each file individually.
The above is the detailed content of Can I Include All PHP Files from a Directory in One Go?. For more information, please follow other related articles on the PHP Chinese website!