How can I print all the content of the files in a certain directory using PHP?

Say that I have a folder called "example" and that there are the following files in that folder:
"example1.txt"
"example2.txt"
"example3.txt"
...
...
...
...
"example100.txt"



What do I do to print all the CONTENTS of the text files using PHP?

Thanks.

2007-08-23T23:06:12Z

what's $dh's original value?

madmonkeyx32007-08-23T22:19:24Z

Favorite Answer

$directory = "/your_dir/examples/";

if ($dh = opendir($directory)) {
// go through each file in the directory
while (($filename = readdir($dh)) !== false) {
// open individual file and print its contents
print file_get_contents($filename);
}
closedir($dh);
}

$dh is just the data handle. You don't have to worry about its value. It's automatically set when you run the open_dir($directory).