1
0
mirror of https://github.com/php/php-src.git synced 2026-04-30 03:33:17 +02:00
Files
archived-php-src/ext/fileinfo/tests/finfo_open_002.phpt
T
Peter Kokot 6426420f61 Merge branch 'PHP-7.4'
* PHP-7.4:
  Replace dirname(__FILE__) by __DIR__ in tests
2019-03-15 23:36:47 +01:00

16 lines
198 B
PHP

--TEST--
FileInfo - Calling the constructor twice
--SKIPIF--
<?php require_once(__DIR__ . '/skipif.inc'); ?>
--FILE--
<?php
$x = new finfo;
$x->__construct();
echo "done!\n";
?>
--EXPECT--
done!