Skip to content

Instantly share code, notes, and snippets.

@co3k
Created December 3, 2010 08:39
Show Gist options
  • Save co3k/726724 to your computer and use it in GitHub Desktop.
Save co3k/726724 to your computer and use it in GitHub Desktop.
<?php
header('Content-Type: text/plain');
$dir = new DirectoryIterator(ini_get('session.save_path'));
foreach ($dir as $file)
{
if ($file->isDot())
{
continue;
}
// {$filename}\t{$last_modified_time}\n
echo $file->getFilename()."\t".date('Y-m-d H:i:s', $file->getMTime()).PHP_EOL;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment