PHP代码
- <?php
- // mp3, wav or any other file formats that media player supports.
- $file = "C:/I Wanna Go To A Place.mp3";
- if (!file_exists($file)) {
- exit('Meida file does not exist.');
- }
- // Create an instance of Windows Media Player
- $player = new COM("WMPlayer.OCX");
- $media = $player->newMedia($file);
- // Get the duration of a media file (seconds)
- print $media->duration;

#1
