1234567891011121314151617181920212223242526272829303132 |
- <?php
- class getid3_pdf
- {
- function getid3_pdf(&$fd, &$ThisFileInfo) {
- $ThisFileInfo['fileformat'] = 'pdf';
- $ThisFileInfo['error'][] = 'PDF parsing not enabled in this version of getID3()';
- return false;
- }
- }
- ?>
|