
| Path : /usr/src/php/ext/spl/tests/ |
| Current File : //usr/src/php/ext/spl/tests/bug52573.phpt |
--TEST--
Bug #52573 (SplFileObject::fscanf Segmentation fault)
--FILE--
<?php // test
$result = null;
$f = new SplFileObject(__FILE__, 'r');
var_dump($f->fscanf('<?php // %s', $result));
var_dump($result);
var_dump($f->fscanf('<?php // %s'));
?>
--EXPECTF--
int(1)
string(4) "test"
array(1) {
[0]=>
NULL
}