?php
echo
"
test1.jpg
:
br
\n"
;
$exif
=
exif_read_data
('tests
/
test1.jpg'
,'IFD0')
;
echo
$exif===false
?
"No
header
data
found
.
br
\n
"
:
"Image
contains
headers
br
"
;
$exif
=
exif_read_data
('tests
/
test2.jpg',0,true)
;
echo
"test2.jpg
:
br
\n"
;
foreach($exif
as
$key=
$section
)
{
foreach($section
as
$name=
$val
)
{
echo
"$key.$name
:
$val
br
\n"
;
}
}
?
|