1
0
mirror of https://github.com/php/php-src.git synced 2026-04-29 19:23:22 +02:00
Files
archived-php-src/ext/exif/tests/exif025.phpt
T
Max Semenik bd9f4fa676 Migrate skip checks to --EXTENSIONS--, p2
For rationale, see https://github.com/php/php-src/pull/6787

Make extension checks lowercase, add a special case for opcache
that has internal name not matching .so filename.

Extensions migrated in part 2:
* dom
* exif
* fileinfo
* ffi
2021-04-01 12:08:24 +01:00

56 lines
1.0 KiB
PHP

--TEST--
Check for exif_read_data, JPEG with IFD0, EXIF, INTEROP data in Motorola byte-order.
--EXTENSIONS--
exif
--INI--
output_handler=
zlib.output_compression=0
--FILE--
<?php
var_dump(exif_read_data(__DIR__.'/image025.jpg'));
?>
--EXPECTF--
array(14) {
["FileName"]=>
string(12) "image025.jpg"
["FileDateTime"]=>
int(%d)
["FileSize"]=>
int(%d)
["FileType"]=>
int(2)
["MimeType"]=>
string(10) "image/jpeg"
["SectionsFound"]=>
string(28) "ANY_TAG, IFD0, EXIF, INTEROP"
["COMPUTED"]=>
array(5) {
["html"]=>
string(20) "width="1" height="1""
["Height"]=>
int(1)
["Width"]=>
int(1)
["IsColor"]=>
int(1)
["ByteOrderMotorola"]=>
int(1)
}
["Exif_IFD_Pointer"]=>
int(26)
["InteroperabilityOffset"]=>
int(44)
["InterOperabilityIndex"]=>
string(3) "R98"
["InterOperabilityVersion"]=>
string(4) "0100"
["RelatedFileFormat"]=>
string(12) "image025.jpg"
["RelatedImageWidth"]=>
int(1)
["RelatedImageHeight"]=>
int(1)
}
--CREDITS--
Eric Stewart <ericleestewart@gmail.com>