php-src/ext/spl/tests/bug65213.phpt
2014-12-04 07:17:33 +08:00

14 lines
169 B
PHP

--TEST--
Bug #65213 (cannot cast SplFileInfo to boolean)
--FILE--
<?php
$o = new SplFileInfo('.');
var_dump((bool) $o);
?>
===DONE===
--EXPECT--
bool(true)
===DONE===