PHP 文件应该运行一次并自行删除。是否可以?
是否可以创建一个运行一次且没有错误并自行删除的 PHP 文件?
Is it possible to create a PHP file that runs once with no errors and deletes itself?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
这是确保脚本被删除的好方法,无论干预代码是否调用 exit() 。
Here's a great way of ensuring the script gets deleted, no matter if intervening code calls exit() or not.
unlink() 是有效的函数,但有时引用基类中的函数和变量或引用还没有任何实例的类中的函数很有用。
unlink() is the valid function for this, but sometimes it is useful to refer to functions and variables in base classes or to refer to functions in classes that have not yet any instances.
如果你不能使用 unlink()
尝试创建.htaccess
If you can't use unlink()
try create .htaccess