mirror of
https://github.com/php/php-src.git
synced 2026-04-29 03:03:26 +02:00
bd9f4fa676
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
17 lines
303 B
PHP
17 lines
303 B
PHP
--TEST--
|
|
Bug #67647: Bundled libmagic 5.17 does not detect quicktime files correctly
|
|
--EXTENSIONS--
|
|
fileinfo
|
|
--FILE--
|
|
<?php
|
|
|
|
$f = __DIR__ . DIRECTORY_SEPARATOR . "67647.mov";
|
|
|
|
$fi = new finfo(FILEINFO_MIME_TYPE);
|
|
var_dump($fi->file($f));
|
|
?>
|
|
+++DONE+++
|
|
--EXPECT--
|
|
string(15) "video/quicktime"
|
|
+++DONE+++
|