如何消除 PHP 中的 filesize() 警告?
除了关闭警告之外..我可以在代码中做什么来消除此错误:
warning: filesize() [function.filesize] stat failed for .... on line 152
代码是:
$store_filesize = filesize($file->filepath);
Other than turning warnings off.. what can I do in my code to get rid of this error:
warning: filesize() [function.filesize] stat failed for .... on line 152
The code is:
$store_filesize = filesize($file->filepath);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
我不确定这是否是您想要的(例如,我不清楚您是否想弄清楚为什么会发生这种情况并解决它),但如果您只是想抑制错误,通常可以在前面使用 @函数名称。
例如
I'm not sure if this is what you want (e.g. I'm not clear if you want to work out why it's happening and work around it) but if you are just looking to suppress errors you can usually use @ in front of the function name.
e.g.
除非文件实际存在,否则不要调用
filesize
:is_file
的文档:http://php.net/manual/en/function.is-file.php:)
Don't call
filesize
unless the file actually exists:Docs for
is_file
: http://php.net/manual/en/function.is-file.php:)
请记住检查
null
:Remember to check for
null
:检查文件是否存在、是否为文件且可读
Check if the file exists, is file and is readable