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

?>
--EXPECT--
bool(false)