Jump to content

VernonWebb

New Members
  • Posts

    4
  • Joined

  • Last visited

Everything posted by VernonWebb

  1. That worked. thank you sir.
  2. Obviously not the solution I was looking for, so how do I sort on modified/creation dates?
  3. It apparently is sorting on the file name, not date the file was modified/created: Array ( [0] => . [1] => .. [2] => AdvisorHub M&A Roundup 01-05-2024.docx [3] => AdvisorHub Wealth Management Outlook 12-28-2023.docx [4] => LPL Purchases Atria Wealth Feb 2024.docx [5] => LPL Retention Offers to Atria Brokers.docx [6] => Merrill loses team amid exodus of firm lifers Jan 2024.docx [7] => Raymond James hits record assets Jan 2024.docx )
  4. I have been racking my brain with this with no obvious solution. For the life of me I cannot sort the following by date. When I run it I get the following output where 2024-02-01 should be before 2024-02-13: 2024-01-30 2024-02-13 2024-02-14 2024-02-01 //PATH $dirPath = 'INuploads'; // $dirPath contain path to directory whose files are to be listed $files = scandir($dirPath); //SORT usort($files); //PRINT OUT RESULTS foreach ($files as $file) { $filePath = $dirPath . '/' . $file; if (is_file($filePath)) { echo "<a href='INuploads/$file' target=new>" . $file . "</a>". date ("Y-m-d", filemtime("$dirPath/$file")); } Any suggestions would be greatly appriciated. I have tried many different variotions of this, arsort, sort, ksort
×
×
  • 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.