mirror of
https://github.com/php/php-src.git
synced 2025-08-15 13:38:49 +02:00
Fix GH-8408: bug68547.phpt fails without multibyte support
This commit is contained in:
parent
2f0918c638
commit
dad5cb442d
1 changed files with 4 additions and 1 deletions
|
@ -1,7 +1,10 @@
|
|||
--TEST--
|
||||
Bug #68547 (Exif Header component value check error)
|
||||
--SKIPIF--
|
||||
<?php if (!extension_loaded('exif')) print 'skip exif extension not available';?>
|
||||
<?php
|
||||
if (!extension_loaded('mbstring')) print 'skip mbstring extension not available';
|
||||
if (!extension_loaded('exif')) print 'skip exif extension not available';
|
||||
?>
|
||||
--FILE--
|
||||
<?php
|
||||
var_dump(exif_read_data(__DIR__ . DIRECTORY_SEPARATOR . 'bug68547.jpg'));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue