PHP Salt


A little dash of PHP... my collection of php functions

Version: 2.33.2
Last Build: December 29, 2023 20:28pm (PST)

Main Menu

Home

Get PHP Salt


The Functions

array
db
file
graph
html
mail
math
misc
mobile
script
string
system
time
web
psFileDel()
Delete files


Description:

Deletes a set of files

Code from:
http://stackoverflow.com/questions/4594180/deleting-all-files-from-a-folder-using-php
user: floern from floern.com



Usage:

psFileDel(FILE_SPEC);



Example:

psFileDel("/tmp/*");
psFileDel("/tmp/*.bak");




Code:


function psFileDel($fileSpec)
{
$files = glob($fileSpec);
foreach($files as $file)
{ // iterate files
if( is_file($file) )
{
//print "file: $file\r\n";
unlink($file); // delete file
}
}
}



Changlelog:


See Also

And a shot out to:

PHP - php.net
Fedora Server - getfedora.com
Shameless ads to pay for site