Bonjour,
Voulant lister et obtenir des informations sur les fichiers d'un dossier,je comptais utiliser la fonction "mime_content_type", mais celle-ci est déclarée obsolète.
Je me tourne alors vers FileInfo et là c'est le drame :
le manuel php me dit que la biblio "magic_open" doit être installée, j'ai eu beau fouiller php.net de font en comble, aucune trace.
php_fileinfo est bien activée mais :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7 <?php $finfo = finfo_open(FILEINFO_MIME); // Retourne le type mime a la extension mimetype foreach (glob("*") as $filename) { echo finfo_file($finfo, $filename) . "\n"; } finfo_close($finfo); ?>
me renvoie :
Donc au secours et merci d'avanceWarning: finfo_open() [function.finfo-open]: Failed to load magic database at '(null)'. in B:\wamp\www\onLineTextEditor\listefichiers.php on line 2
Warning: finfo_file(): supplied argument is not a valid file_info resource in B:\wamp\www\onLineTextEditor\listefichiers.php on line 4
Warning: finfo_file(): supplied argument is not a valid file_info resource in B:\wamp\www\onLineTextEditor\listefichiers.php on line 4
Warning: finfo_file(): supplied argument is not a valid file_info resource in B:\wamp\www\onLineTextEditor\listefichiers.php on line 4
Warning: finfo_close(): supplied argument is not a valid file_info resource in B:\wamp\www\onLineTextEditor\listefichiers.php on line 6
Partager