ru_php/ext/fileinfo/tests/precedural_finfo_in_method.phpt

21 lines
325 B
PHP

--TEST--
Using procedural finfo API in a method
--EXTENSIONS--
fileinfo
--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"