如何消除 PHP 中的 filesize() 警告?

发布于 2024-11-15 17:39:44 字数 221 浏览 3 评论 0原文

除了关闭警告之外..我可以在代码中做什么来消除此错误:

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 技术交流群。

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

发布评论

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

评论(5

鹿童谣 2024-11-22 17:39:44

我不确定这是否是您想要的(例如,我不清楚您是否想弄清楚为什么会发生这种情况并解决它),但如果您只是想抑制错误,通常可以在前面使用 @函数名称。

例如

$store_filesize = @filesize($file->filepath);

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.

$store_filesize = @filesize($file->filepath);
画骨成沙 2024-11-22 17:39:44
$store_filesize = @filesize($file->filepath);
if ($store_filesize === FALSE) {
  throw new \Exception('filesize failed');
}
$store_filesize = @filesize($file->filepath);
if ($store_filesize === FALSE) {
  throw new \Exception('filesize failed');
}
豆芽 2024-11-22 17:39:44

除非文件实际存在,否则不要调用 filesize

$store_filesize = is_file($file->filepath) ? filesize($file->filepath) : 0;

is_file 的文档:http://php.net/manual/en/function.is-file.php

:)

Don't call filesize unless the file actually exists:

$store_filesize = is_file($file->filepath) ? filesize($file->filepath) : 0;

Docs for is_file: http://php.net/manual/en/function.is-file.php

:)

指尖微凉心微凉 2024-11-22 17:39:44

请记住检查 null

if($file->filepath != null){
   $store_filesize = filesize($file->filepath);
}

Remember to check for null:

if($file->filepath != null){
   $store_filesize = filesize($file->filepath);
}
带刺的爱情 2024-11-22 17:39:44

检查文件是否存在、是否为文件且可读

if (is_readable($file->filepath)) {
    $store_filesize = filesize($file->filepath);
}

Check if the file exists, is file and is readable

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