gpt4 book ai didi

PHP Delete 返回错误

转载 作者:行者123 更新时间:2023-12-04 20:54:01 27 4
gpt4 key购买 nike

每当我尝试使用 PHP 删除 counter.txt 时,我总是会收到错误消息:

Fatal error: Call to undefined function delete() in C:\XAMPP\htdocs\jellykat\control-panel.php on line 12

这是我的代码:

<?php delete("counter.txt"); ?>

这是怎么回事?您能否建议我删除 counter.txt 的其他方法?

别怪我。我从这里得到了 delete() 方法:http://www.w3schools.com/php/func_filesystem_delete.asp

最佳答案

你应该使用 unlink()相反 .. 没有这样的 delete()

如果你看到delete()的手册, 它说..

This is a dummy manual entry to satisfy those people who are looking for unlink() or unset() in the wrong place.

所以,应该是

<?php unlink("counter.txt"); ?>

关于PHP Delete 返回错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23044890/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com