我正在尝试创建一个自毁文件。我的意思是,如果条件等于 true,则文件会自行删除。
在我看来,以下代码应该可以解决问题。但是,它什么也没做。我究竟做错了什么?
<?php
phpinfo();
// The following should be activated when the url is
// selfdestruct.php?delete=1, correct?
if ($_GET['delete']==1) {
$file = 'selfdestruct.php';
unlink($file);
}
?>
提前感谢您的帮助!我很感激!:-)