PHP unlink() 函数
PHP unlink() 函数
完整的 PHP Filesystem 参考手册定义和用法
unlink() 函数删除文件。
如果成功,该函数返回 TRUE。如果失败,则返回 FALSE。
语法
unlink(filename,context)
参数 | 描述 |
---|---|
filename | 必需。规定要删除的文件。 |
context | 可选。规定文件句柄的环境。context 是一套可以修改流的行为的选项。 |
实例
<?php
$file = "test.txt";
if (!unlink($file))
{
echo ("Error deleting $file");
}
else
{
echo ("Deleted $file");
}
?>
$file = "test.txt";
if (!unlink($file))
{
echo ("Error deleting $file");
}
else
{
echo ("Deleted $file");
}
?>
完整的 PHP Filesystem 参考手册
相关文章
- PHP 教程
- PHP 简介
- PHP 语法
- PHP 字符串
- PHP While 循环
- PHP JSON
- PHP array_change_key_case() 函数
- PHP array_column() 函数
- PHP array_count_values() 函数
- PHP array_diff_key() 函数
- PHP array_key_exists() 函数
- PHP array_map() 函数
- PHP array_udiff_assoc() 函数
- PHP array_unique() 函数
- PHP asort() 函数
- PHP end() 函数
- PHP next() 函数
- PHP prev() 函数
- PHP sort() 函数
- PHP uasort() 函数