PHP-常量字符串中的错误
我突然在以下行中收到错误 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
unset()
取消设置变量。您不能unset()
字符串文字,这没有意义。也许您正在寻找
unlink()
?unset()
unsets variables. You can'tunset()
a string literal, that doesn't make sense.Perhaps you are looking for
unlink()
?你不能取消常量。如果你想删除文件,你选择的函数是unlink()。
you can't unset a constant. If you want to delete the file, your function of choice it unlink().