summaryrefslogtreecommitdiff
path: root/ext/fileinfo/tests/finfo_open_002.phpt
blob: cf4809f0932d97e5711ae999b3ed9a5c9d29f2f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
--TEST--
FileInfo - Calling the constructor twice
--SKIPIF--
<?php require_once(dirname(__FILE__) . '/skipif.inc'); ?>
--FILE--
<?php

$x = new finfo;
$x->finfo();

echo "done!\n";

?>
--EXPECTF--
done!