不会吧,我的getid3.php 167-172怎么是
$this->info['filesize'] = filesize($filename);
// option_max_2gb_check
if ($this->option_max_2gb_check) {
// PHP doesn't support integers larger than 31-bit (~2GB)
// filesize() simply returns (filesize % (pow(2, 32)), no matter the actual filesize
144-150是
if ($old_magic_quotes_runtime) {
set_magic_quotes_runtime(0); // turn off magic_quotes_runtime
if (get_magic_quotes_runtime()) {
die('Could not disable magic_quotes_runtime - getID3() cannot work properly with this setting enabled');
}
}