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