summaryrefslogtreecommitdiff
path: root/ext/fileinfo/tests/finfo_open_002.phpt
blob: 3a3891d72c819d0b07f6bfa320d5d9adcbf8c73f (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";

?>
--EXPECT--
done!