Funkcje Exif
PHP Manual

exif_tagname

(PHP 4 >= 4.2.0, PHP 5)

exif_tagnameGet the header name for an index

Opis

string exif_tagname ( int $index )

Parametry

index

The Tag ID for which a Tag Name will be looked up.

Zwracane wartości

Returns the header name, or FALSE if index is not a defined EXIF tag id.

Przykłady

Przykład #1 exif_tagname() example

<?php
echo "256: ".exif_tagname(256).PHP_EOL;
echo 
"257: ".exif_tagname(257).PHP_EOL;
?>

Powyższy przykład wyświetli:

256: ImageWidth
257: ImageLength

Zobacz też:


Funkcje Exif
PHP Manual