Verzeichnisstruktur phpBB-3.2.0
- Veröffentlicht
- 06.01.2017
So funktioniert es
|
Auf das letzte Element klicken. Dies geht jeweils ein Schritt zurück |
Auf das Icon klicken, dies öffnet das Verzeichnis. Nochmal klicken schließt das Verzeichnis. |
|
(Beispiel Datei-Icons)
|
Auf das Icon klicken um den Quellcode anzuzeigen |
FileinfoMimeTypeGuesser.php
01 <?php
02
03 /*
04 * This file is part of the Symfony package.
05 *
06 * (c) Fabien Potencier <fabien@symfony.com>
07 *
08 * For the full copyright and license information, please view the LICENSE
09 * file that was distributed with this source code.
10 */
11
12 namespace Symfony\Component\HttpFoundation\File\MimeType;
13
14 use Symfony\Component\HttpFoundation\File\Exception\FileNotFoundException;
15 use Symfony\Component\HttpFoundation\File\Exception\AccessDeniedException;
16
17 /**
18 * Guesses the mime type using the PECL extension FileInfo.
19 *
20 * @author Bernhard Schussek <bschussek@gmail.com>
21 */
22 class FileinfoMimeTypeGuesser implements MimeTypeGuesserInterface
23 {
24 private $magicFile;
25
26 /**
27 * Constructor.
28 *
29 * @param string $magicFile A magic file to use with the finfo instance
30 *
31 * @see http://www.php.net/manual/en/function.finfo-open.php
32 */
33 public function __construct($magicFile = null)
34 {
35 $this->magicFile = $magicFile;
36 }
37
38 /**
39 * Returns whether this guesser is supported on the current OS/PHP setup.
40 *
41 * @return bool
42 */
43 public static function isSupported()
44 {
45 return function_exists('finfo_open');
46 }
47
48 /**
49 * {@inheritdoc}
50 */
51 public function guess($path)
52 {
53 if (!is_file($path)) {
54 throw new FileNotFoundException($path);
55 }
56
57 if (!is_readable($path)) {
58 throw new AccessDeniedException($path);
59 }
60
61 if (!self::isSupported()) {
62 return;
63 }
64
65 if (!$finfo = new \finfo(FILEINFO_MIME_TYPE, $this->magicFile)) {
66 return;
67 }
68
69 return $finfo->file($path);
70 }
71 }
72