mirror of
https://github.com/php/php-src.git
synced 2024-12-03 23:05:57 +08:00
13 lines
289 B
PHP
13 lines
289 B
PHP
--TEST--
|
|
SPL: SplFileObject::haschildren error 001
|
|
--CREDITS--
|
|
Erwin Poeze <erwin.poeze at gmail.com>
|
|
--FILE--
|
|
<?php
|
|
$s = new SplFileObject( __FILE__ );
|
|
$s->hasChildren('string');
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Warning: SplFileObject::hasChildren() expects exactly 0 parameters, 1 given in %s on line %d
|