Learn about Linux
Download Linux
Get Linux help
Get special offers on:
Linux Application Dev Programming Software
Email:
#
Return to CAPTCHA your blog comments with FOSS utilities
© Copyright 1999-2008 - SourceForge, Inc., All Rights Reserved About Linux.com - Privacy Statement - Terms of Use - Advertise - Trademark - Ask Linux Questions - Write for Us - RSS Feed ThinkGeek - Slashdot - SourceForge.net - freshmeat - Surveys - Jobs
Re:Filenames on the Fly
Posted by: Anonymous Coward on August 25, 2006 11:13 PMfunction captcha_destroy_img() {
$dir="/dir/to/captcha/images"
$directory=opendir($dir);
$file_array=array();
while (($file = readdir($directory))!=false) {
if (preg_match("/.png\$/",$file)) unlink($dir.$file);
}
closedir($directory);
}
#