* 确认有 php_com_dotnet.dll
D:\opt\xampp\php\ext
没有就在http://pecl.php.net/下载
* php.ini中开启这些配置:
[COM_DOT_NET]
extension=php_com_dotnet.dll
[COM]
com.allow_dcom=true
* 使用com组件取得>2G文件大小
<?php
function realFileSize($filePath) {
if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
$fs = new \COM("Scripting.FileSystemObject");
return $fs->GetFile($filePath)->Size;
} else {
return filesize($filePath);
}
}
$path = "E:/test_pushed/resource/media/ftp/movie/frozen.ts";
echo realFileSize($path);
?>