Answers for "remove files in a directory php"

PHP
10

php remove file

if(file_exists($file)) {
	unlink($file);
}
Posted by: Guest on January-13-2020
2

php delete directory

rmdir ( string $dirname , resource $context = ? ) : bool
Posted by: Guest on January-12-2021

Code answers related to "remove files in a directory php"

Browse Popular Code Answers by Language