(PHP 4, PHP 5)
unlink — 删除文件
$filename
)
删除 filename
。和 Unix C 的
unlink() 函数相似。成功时返回 TRUE
, 或者在失败时返回 FALSE
.
Note: 自 PHP 5.0.0 起 unlink() 也可以用于某些 URL 封装协议。参考Supported Protocols and Wrappers 中的列表看哪些封装协议支持 unlink()。
Note: 在 PHP 5.0.0 中增加了 对上下文(Context)的支持。 有关 上下文(Context) 的说明参见 Streams。
参见目录删除函数 rmdir()。
filename
Path to the file.
context
Note: 在 PHP 5.0.0 中增加了 对上下文(Context)的支持。 有关 上下文(Context) 的说明参见 Streams。
成功时返回 TRUE
, 或者在失败时返回 FALSE
.
版本 | 说明 |
---|---|
5.0.0 | As of PHP 5.0.0 unlink() can also be used with some URL wrappers. Refer to Supported Protocols and Wrappers for a listing of which wrappers support unlink(). |
Example #1 Basic unlink() usage
<?php
$fh = fopen('test.html', 'a');
fwrite($fh, '<h1>Hello world!</h1>');
fclose($fh);
unlink('test.html');
?>