mirror of
https://github.com/php/php-src.git
synced 2024-11-25 02:44:58 +08:00
30 lines
865 B
PHP
30 lines
865 B
PHP
<?php
|
|
if(!extension_loaded('fileinfo')) {
|
|
dl('fileinfo.' . PHP_SHLIB_SUFFIX);
|
|
}
|
|
if(!extension_loaded('fileinfo')) {
|
|
die("fileinfo extension is not avaliable, please compile it.\n");
|
|
}
|
|
|
|
// normal operation
|
|
$res = finfo_open(FILEINFO_MIME); /* return mime type ala mimetype extension */
|
|
$files = glob("*");
|
|
foreach ($files as $file) {
|
|
echo finfo_file($res, $file) . "\n";
|
|
}
|
|
finfo_close($res);
|
|
|
|
// OO mode
|
|
/*
|
|
* FILEINFO_PRESERVE_ATIME - if possible preserve the original access time
|
|
* FILEINFO_SYMLINK - follow symlinks
|
|
* FILEINFO_DEVICES - look at the contents of blocks or character special devices
|
|
* FILEINFO_COMPRESS - decompress compressed files
|
|
*/
|
|
$fi = new finfo(FILEINFO_PRESERVE_ATIME|FILEINFO_SYMLINK|FILEINFO_DEVICES|FILEINFO_COMPRESS);
|
|
$files = glob("*");
|
|
foreach ($files as $file) {
|
|
echo $fi->buffer(file_get_contents($file)) . "\n";
|
|
}
|
|
?>
|