Mwnci unlink() Function

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)