mirror of
https://github.com/php/php-src.git
synced 2026-04-27 18:23:26 +02:00
15 lines
228 B
PHP
15 lines
228 B
PHP
--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)
|