Hallo,
gibt es in PHP eine simple Möglichkeit, herauszufinden, ob es sich bei einem Upload um eine Datei im PCX-Format handelt?
liefert
application/octet-stream
$grafik_typ liefert bei meinem PCX-Beispiel nichts.
lässt m.E. keine Rückschlüsse zu.
Muss man also den Inhalt parsen...?
Gruß Maiki
gibt es in PHP eine simple Möglichkeit, herauszufinden, ob es sich bei einem Upload um eine Datei im PCX-Format handelt?
PHP-Code:
$_FILES [ 'grafik' ] [ 'type' ]
application/octet-stream
PHP-Code:
$size = getimagesize ( $_FILES [ 'grafik' ] ['tmp_name'] );
$grafik_typ = $size [ 2 ];
PHP-Code:
$_FILES [ 'grafik' ] ['tmp_name']
Muss man also den Inhalt parsen...?
Gruß Maiki
Kommentar