12 lines
156 B
Plaintext
12 lines
156 B
Plaintext
|
|
--TEST--
|
||
|
|
Testing SplFileInfo calling the constructor twice
|
||
|
|
--FILE--
|
||
|
|
<?php
|
||
|
|
$x = new splfileinfo(1);
|
||
|
|
$x->__construct(1);
|
||
|
|
|
||
|
|
echo "done!\n";
|
||
|
|
?>
|
||
|
|
--EXPECT--
|
||
|
|
done!
|