summaryrefslogtreecommitdiff
path: root/ext/exif
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2002-10-25 11:10:08 +0000
committerMarcus Boerger <helly@php.net>2002-10-25 11:10:08 +0000
commit0a7653263d863ac87d8b2489d6ea61d8a2421cf4 (patch)
treee2d894fef7bf251fddf5f2bd88d1f5f1705eb132 /ext/exif
parent5a8ed1e734e666d60e819f55b93e333d9dcd8288 (diff)
downloadphp-git-0a7653263d863ac87d8b2489d6ea61d8a2421cf4.tar.gz
README.TESTING examples
Diffstat (limited to 'ext/exif')
-rw-r--r--ext/exif/tests/exif005.phpt10
1 files changed, 6 insertions, 4 deletions
diff --git a/ext/exif/tests/exif005.phpt b/ext/exif/tests/exif005.phpt
index 58abac9620..02c34ea3da 100644
--- a/ext/exif/tests/exif005.phpt
+++ b/ext/exif/tests/exif005.phpt
@@ -1,12 +1,14 @@
--TEST--
Check for exif_read_data, unusual IFD start
--SKIPIF--
-<?php if (!extension_loaded('exif')) print 'skip exif extension not available';?>
+<?php
+ if (!extension_loaded('exif')) print 'skip exif extension not available';
+?>
--FILE--
<?php
-/*
- test5.jpg is a 1*1 image that contain an Exif section with ifd start at 00000009h
-*/
+/* Do not change this test it is a REATME.TESTING example.
+ * test5.jpg is a 1*1 image that contains an Exif section with ifd = 00000009h
+ */
$image = exif_read_data('./ext/exif/tests/test5.jpg','',true,false);
var_dump($image['IFD0']);
?>