summaryrefslogtreecommitdiff
path: root/ext/spl/tests/SplFileObject_haschildren_basic.phpt
blob: 1ce00bfd42b13e1fe3f34b3705ed1f723f3cabbc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
--TEST--
SPL: SplFileObject::haschildren basic
--CREDITS--
Erwin Poeze <erwin.poeze at gmail.com>
--FILE--
<?php
$s = new SplFileObject( __FILE__ );
var_dump($s->hasChildren());

?>
--EXPECT--
bool(false)