PHP-常量字符串中的错误

发布于 2024-12-02 22:14:01 字数 152 浏览 2 评论 0原文

我突然在以下行中收到错误 Parse error: syntax error, Unexpected T_CONSTANT_ENCAPSED_STRING:

unset('SCAN/DATA.FIL');

我没有看到错误!

I suddenly get an error Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING in the following line:

unset('SCAN/DATA.FIL');

I don't see the Error!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

匿名的好友 2024-12-09 22:14:01

unset() 取消设置变量。您不能 unset() 字符串文字,这没有意义。

也许您正在寻找 unlink()

unset() unsets variables. You can't unset() a string literal, that doesn't make sense.

Perhaps you are looking for unlink()?

仙气飘飘 2024-12-09 22:14:01

你不能取消常量。如果你想删除文件,你选择的函数是unlink()

you can't unset a constant. If you want to delete the file, your function of choice it unlink().

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文