Voting

: min(zero, four)?
(Example: nine)

The Note You're Voting On

Moro
12 years ago
Return latest mod time of all included files:

<?php
function get_page_mod_time() {
$incls = get_included_files();
$incls = array_filter($incls, "is_file");
$mod_times = array_map('filemtime', $incls);
$mod_time = max($mod_times);

return
$mod_time;
}
?>

<< Back to user notes page

To Top