获取文件大小 >没有外部程序的 PHP 中的 2 GB 文件
确定文件大小的默认方法,例如 filesize()、stat() 和 fseek(),无法准确捕获超过 2 的文件大小GB。然而,PHP 32 位平台中存在一个利用开源项目大文件工具的可行解决方案。
大文件工具:综合解决方案
大文件工具包含一系列专门设计用于操作大于 2 GB 的文件的技术。这个独立于平台的库提供了一种强大的方法,最初尝试利用特定于系统的 shell 命令。在 shell 命令不可用的情况下,它使用 Windows COM 或诉诸于 filesize()。
实现解决方案
以下 PHP 代码展示了如何实现 Big文件工具解决方案:
<code class="php">/* * This software may be modified and distributed under the terms * of the MIT license. */ function filesize64($file) { static $iswin; if (!isset($iswin)) { $iswin = (strtoupper(substr(PHP_OS, 0, 3)) == 'WIN'); } static $exec_works; if (!isset($exec_works)) { $exec_works = (function_exists('exec') && !ini_get('safe_mode') && @exec('echo EXEC') == 'EXEC'); } // try a shell command if ($exec_works) { $cmd = ($iswin) ? "for %F in (\"$file\") do @echo %~zF" : "stat -c%s \"$file\""; @exec($cmd, $output); if (is_array($output) && ctype_digit($size = trim(implode("\n", $output)))) { return $size; } } // try the Windows COM interface if ($iswin && class_exists("COM")) { try { $fsobj = new COM('Scripting.FileSystemObject'); $f = $fsobj->GetFile( realpath($file) ); $size = $f->Size; } catch (Exception $e) { $size = null; } if (ctype_digit($size)) { return $size; } } // if all else fails return filesize($file); }</code>
此实现可确保准确确定超过 2 GB 的文件大小,而无需外部程序。
以上是如何在 PHP 中不使用外部工具确定大于 2 GB 的文件大小?的详细内容。更多信息请关注PHP中文网其他相关文章!