[go: nahoru, domu]

PHP 8.4.0 Alpha 4 available for testing

Voting

: nine plus zero?
(Example: nine)

The Note You're Voting On

joseph dot morphy at gmail dot com
17 years ago
<?php
$html_array
= glob("*.html");

function
sort_by_mtime($file1,$file2) {
$time1 = filemtime($file1);
$time2 = filemtime($file2);
if (
$time1 == $time2) {
return
0;
}
return (
$time1 < $time2) ? 1 : -1;
}

usort($html_array,"sort_by_mtime");
//$html_array is now ordered by the time it was last modified
?>

<< Back to user notes page

To Top