mirror of
https://github.com/php/php-src.git
synced 2024-12-02 22:34:55 +08: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
48 lines
1.3 KiB
PHP
48 lines
1.3 KiB
PHP
--TEST--
|
|
Test finfo_buffer() function : basic functionality
|
|
--EXTENSIONS--
|
|
fileinfo
|
|
--FILE--
|
|
<?php
|
|
$magicFile = __DIR__ . DIRECTORY_SEPARATOR . 'magic私はガラスを食べられます';
|
|
|
|
$options = array(
|
|
FILEINFO_NONE,
|
|
FILEINFO_MIME,
|
|
);
|
|
|
|
$buffers = array(
|
|
"Regular string here",
|
|
"\177ELF",
|
|
"\000\000\0001\000\000\0000\000\000\0000\000\000\0002\000\000\0000\000\000\0000\000\000\0003",
|
|
"\x55\x7A\x6E\x61",
|
|
"id=ImageMagick\x0a\x0c\x0a:\x1a",
|
|
"RIFFüîò^BAVI LISTv",
|
|
);
|
|
|
|
echo "*** Testing finfo_buffer() : basic functionality ***\n";
|
|
|
|
foreach( $options as $option ) {
|
|
$finfo = finfo_open( $option, $magicFile );
|
|
foreach( $buffers as $string ) {
|
|
var_dump( finfo_buffer( $finfo, $string, $option ) );
|
|
}
|
|
finfo_close( $finfo );
|
|
}
|
|
|
|
?>
|
|
--EXPECT--
|
|
*** Testing finfo_buffer() : basic functionality ***
|
|
string(36) "ASCII text, with no line terminators"
|
|
string(3) "ELF"
|
|
string(22) "old ACE/gr binary file"
|
|
string(12) "xo65 object,"
|
|
string(15) "MIFF image data"
|
|
string(25) "RIFF (little-endian) data"
|
|
string(28) "text/plain; charset=us-ascii"
|
|
string(26) "text/plain; charset=ebcdic"
|
|
string(40) "application/octet-stream; charset=binary"
|
|
string(28) "text/plain; charset=us-ascii"
|
|
string(28) "image/x-miff; charset=binary"
|
|
string(25) "text/plain; charset=utf-8"
|