unlink
Deletes a file
&reftitle.description;
boolunlink
stringfilename
resourcecontext
Deletes filename. Similar to the Unix C unlink()
function. An E_WARNING level error will be generated on
failure.
&reftitle.parameters;
filename
Path to the file.
context
¬e.context-support;
&reftitle.returnvalues;
&return.success;
&reftitle.changelog;
&Version;
&Description;
7.3.0
On Windows, it is now possible to unlink files with
handles in use, while formerly that would fail. However, it is still not
possible to re-create the unlinked file, until all handles to it have been
closed.
&reftitle.examples;
Basic unlink usage
Hello world!');
fclose($fh);
unlink('test.html');
?>
]]>
&reftitle.seealso;
rmdir