summaryrefslogtreecommitdiff
path: root/ext/spl/tests/bug65213.phpt
blob: d190941a0e525882e76675b213dfcee1f2d0678f (plain)
1
2
3
4
5
6
7
8
9
10
11
--TEST--
Bug #65213 (cannot cast SplFileInfo to boolean)
--FILE--
<?php

$o = new SplFileInfo('.');
var_dump((bool) $o);

?>
--EXPECT--
bool(true)