mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
27242a7a46
-new test and example for documentation
23 lines
496 B
PHP
23 lines
496 B
PHP
<?php
|
|
// (c) M.Boerger
|
|
//
|
|
// $Id$
|
|
//
|
|
?><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional">
|
|
<html>
|
|
<head>
|
|
<title>exif_read_data example</title>
|
|
</head>
|
|
<body>
|
|
<?php
|
|
$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);
|
|
foreach($exif as $key=>$section) {
|
|
foreach($section as $name=>$val) {
|
|
echo "$key.$name: $val<br>\n";
|
|
}
|
|
}
|
|
?>
|
|
</body>
|
|
</html>
|