Jump to content

FTP- How to get file?


raysefo

Recommended Posts

Hi,

 

Hi,

I am getting files from FTP as follows:

 

$homepage = file_get_contents('ftp://usr:[email protected]:111/a/b/test-wins_6-40-1010.txt');

 

I wonder if there is a way to get the files according to the creation date or modification date?

or if it is NOT possible, can I somehow get the file name and get the 6-40-1010 portion as follows?
6-40
1010

Link to comment
https://forums.phpfreaks.com/topic/278754-ftp-how-to-get-file/
Share on other sites

You can use the ftp functions (http://php.net/ftp) to list the files in the current working directory. You'd then be able to parse the file names and create some sort of order. Finally, you can retrieve each file in that order. 

 

Similarly, you could retrieve the last modified time using http://php.net/ftp_mdtm and order the files using that. The last step would be the same.

 

Why do you want to do this?

Link to comment
https://forums.phpfreaks.com/topic/278754-ftp-how-to-get-file/#findComment-1433982
Share on other sites

You'll need to cycle through every file every time in that case. 

 

Alternatively, if you can store the last file used and you know how the file names increment, you can implement an algorithm to "guess" the next file name and search for it. If that fails you can fallback to parsing every file name.

 

If you can be sure the file name will end the same as your example then go with the http://php.net/ftp_rawlist function and search for the most recent file. This method depends on the file name though, and assumes the file naming convention will be continuous.

Link to comment
https://forums.phpfreaks.com/topic/278754-ftp-how-to-get-file/#findComment-1433987
Share on other sites

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.