ru_php/ext/fileinfo/tests/finfo_open_002.phpt

16 lines
163 B
PHP

--TEST--
FileInfo - Calling the constructor twice
--EXTENSIONS--
fileinfo
--FILE--
<?php
$x = new finfo;
$x->__construct();
echo "done!\n";
?>
--EXPECT--
done!