Jump to content

Getting Information From All .txt Files In A Folder


Strahd

Recommended Posts

Hello all,

 

I have this code which currently reads 1 .txt file in a folder. How can I modify it so that it gets information from *.txt files in the folder?

 

$data_file = @$argv[1];
if (empty($data_file))
{
       die("\nUsage: {$argv[0]} path/to/data/file.txt\n\n");
}

$db = getDb();
// 
$fd = fopen($data_file, 'r');

 

I appreciate any help anyone is willing to offer.

In his post, glob is a link to the manual where you can read what it does.

 

It will return an array of filenames (you can use wildcards), so then you process each element of the array instead of reading the filename from the command line arguments.

 

You will also need foreach

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.