Syntax
unlink(string)
Description
The unlink() function removes the named file or empty directory. A boolean of true is returned on success, otherwise false.
Example
Tempfile=tmpnam("/tmp/") unlink(Tempfile)
unlink(string)
The unlink() function removes the named file or empty directory. A boolean of true is returned on success, otherwise false.
Tempfile=tmpnam("/tmp/") unlink(Tempfile)