21,893
社区成员




<?php
function mp3length($file) {
if (!file_exists($file)) {
exit('文件不存在d');
}
$player = new COM("WMPlayer.OCX");
$media = $player->newMedia($file);
$time=$media->getItemInfo(FileSize);//大小
return $time;
}
echo mp3length("/1.mp3");
?>