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

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

echo "done!\n";

?>
--EXPECT--
done!