1
0
mirror of https://github.com/php/php-src.git synced 2026-04-28 18:53:33 +02:00
Files
archived-php-src/ext/exif/tests/bug64739.phpt
T
Gabriel Caruso ded3d984c6 Use EXPECT instead of EXPECTF when possible
EXPECTF logic in run-tests.php is considerable, so let's avoid it.
2018-02-20 21:53:48 +01:00

42 lines
809 B
PHP

--TEST--
Bug #64739 (Invalid Title and Author data returned)
--SKIPIF--
<?php
extension_loaded("exif") or die("skip need exif");
if (!extension_loaded('mbstring')) die('skip mbstring extension not available');
?>
--FILE--
<?php
echo "Test\n";
$headers1 = exif_read_data(__DIR__ . '/bug64739.jpg');
if ($headers1 === false) {
echo 'Error, failed to read exif data';
exit;
}
var_dump($headers1['Title']{0} === '?');
var_dump($headers1['Author']{0} === '?');
ini_set('exif.decode_unicode_motorola', 'UCS-2LE');
$headers2 = exif_read_data(__DIR__ . '/bug64739.jpg');
if ($headers2 === false) {
echo 'Error, failed to read exif data';
exit;
}
var_dump($headers2['Title']);
var_dump($headers2['Author']);
?>
Done
--EXPECT--
Test
bool(true)
bool(true)
string(8) "55845364"
string(13) "100420.000000"
Done