Verzeichnisstruktur phpBB-3.3.15
- Veröffentlicht
- 28.08.2024
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 |
TypeInterface.php
01 <?php
02
03 /**
04 * fast-image-size image type interface
05 * @package fast-image-size
06 * @copyright (c) Marc Alexander <admin@m-a-styles.de>
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 FastImageSize\Type;
13
14 interface TypeInterface
15 {
16 /** @var int 4-byte long size */
17 const LONG_SIZE = 4;
18
19 /** @var int 2-byte short size */
20 const SHORT_SIZE = 2;
21
22 /**
23 * Get size of supplied image
24 *
25 * @param string $filename File name of image
26 *
27 * @return null
28 */
29 public function getSize($filename);
30 }
31