aboutsummaryrefslogtreecommitdiffstats
path: root/list_icals.php
blob: 3745cd1a4f72b1cc34d0a156984ae828d4eb0668 (plain) (blame)
1
<?

$path = "/Users/clittle/Sites/php_ical/templates";
$dir_handle = @opendir($path) or die("Unable to open $path");
while ($file = readdir($dir_handle)) {
	$date = date("Ymd", filemtime($file));
	if (strstr ($file, ".ics")) {
	$listofiles[$date] = $file;
	}
}

closedir($dir_handle);
print_r($listofiles);

?>

© 2014-2024 Faster IT GmbH | imprint | privacy policy