unlink() 函数用于删除一个文件,如果成功则返回 TRUE,失败则返回 FALSE。
语法:
bool unlink( string filename )
例子:
<?php unlink("test.txt"); ?>
rmdir():删除目录。
0