diff options
author | SVN Migration <svn@php.net> | 2006-10-15 21:09:28 +0000 |
---|---|---|
committer | SVN Migration <svn@php.net> | 2006-10-15 21:09:28 +0000 |
commit | 88ec761548b66f58acc1a86cdd0fc164ca925476 (patch) | |
tree | d0af978fa00d83bb1d82c613f66477fbd6bb18aa /ext/exif/example.php | |
parent | 268984b4787e797db6054313fc9ba3b9e845306e (diff) | |
download | php-git-PECL_OPENSSL.tar.gz |
This commit was manufactured by cvs2svn to create branch 'PECL_OPENSSL'.PECL_OPENSSL
Diffstat (limited to 'ext/exif/example.php')
-rw-r--r-- | ext/exif/example.php | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/ext/exif/example.php b/ext/exif/example.php deleted file mode 100644 index e34dc05f6d..0000000000 --- a/ext/exif/example.php +++ /dev/null @@ -1,23 +0,0 @@ -<?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>
\ No newline at end of file |