php-src/ext/fileinfo/tests/precedural_finfo_in_method.phpt
2018-02-03 13:54:34 +01:00

21 lines
343 B
PHP

--TEST--
Using procedural finfo API in a method
--SKIPIF--
<?php require 'skipif.inc'; ?>
--FILE--
<?php
class Test {
public function method() {
$finfo = finfo_open(FILEINFO_MIME);
var_dump(finfo_file($finfo, __FILE__));
}
}
$test = new Test;
$test->method();
?>
--EXPECT--
string(28) "text/x-php; charset=us-ascii"