ILIAS  release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
module.archive.rar.php
Go to the documentation of this file.
1<?php
4// available at http://getid3.sourceforge.net //
5// or http://www.getid3.org //
7// See readme.txt for more details //
9// //
10// module.archive.rar.php //
11// module for analyzing RAR files //
12// dependencies: NONE //
13// ///
15
16
18{
19
20 function getid3_rar(&$fd, &$ThisFileInfo) {
21
22 $ThisFileInfo['fileformat'] = 'rar';
23
24 $ThisFileInfo['error'][] = 'RAR parsing not enabled in this version of getID3()';
25 return false;
26
27 }
28
29}
30
31
32?>
getID3() by James Heinrich info@getid3.org //
getid3_rar(&$fd, &$ThisFileInfo)