mirror of
https://github.com/php/php-src.git
synced 2024-12-03 23:05:57 +08:00
12 lines
187 B
PHP
12 lines
187 B
PHP
--TEST--
|
|
Bug #46088 (RegexIterator::accept - segfault)
|
|
--FILE--
|
|
<?php
|
|
|
|
$x = new RegexIterator(new ArrayIterator(range(1, 10)), '/\d/');
|
|
var_dump($x->accept());
|
|
|
|
?>
|
|
--EXPECT--
|
|
bool(false)
|