mirror of
https://github.com/php/php-src.git
synced 2025-01-05 18:33:56 +08:00
13 lines
205 B
PHP
13 lines
205 B
PHP
--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)
|