mirror of
https://github.com/php/php-src.git
synced 2024-12-13 03:44:17 +08:00
18 lines
205 B
PHP
18 lines
205 B
PHP
--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!
|
|
|
|
|