Recent Posts

Caution: Greetings to all visitors. The site is working in short. Links Please skip the link to view any topic and thank you for visiting
header ads

PHP List Recent Files in Folder - I'm close

I would like to list the top x number of files in a particular folder. I have a script that list the most recent, but I need something that list the top X.

Here's the current script:

<?php
# Most recently updated file in a directory
 
 
# Set up
 
$dir = "/home/bleucube/public_html/XXXXX";
$pattern = '\.(html|php|php4|txt )$';
 
$newstamp = 0;
$newname = "";
$dc = opendir($dir);
while ($fn = readdir($dc)) {
        # Eliminate current directory, parent directory...
PHP:
PHP List Recent Files in Folder - I'm close

from PHP https://ift.tt/32COr70
via IFTTT

Post a Comment

0 Comments