View Single Post
Old 06-07-2009, 06:48 PM   #2 (permalink)
tony
The Addict
 
tony's Avatar
 
Join Date: Aug 2008
Posts: 336
Thanks: 8
tony is on a distinguished road
Default

unlink() deletes a file. if it doesn't exists, then it throws a warning.
check first if the file exists.
PHP Code:
if(file_exists($out)){ unlink($out); } 
tony is offline  
Reply With Quote