diff options
author | Marcus Boerger <helly@php.net> | 2003-12-06 19:21:02 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2003-12-06 19:21:02 +0000 |
commit | 7046afb5420a7488574d21e2bede26b8b13239b6 (patch) | |
tree | 5dc228bd8b4c97d1beed9f55f95df7459e337395 /ext/spl/php_spl.c | |
parent | 8e188f9d038de465eed9ba2bac5881939860ad56 (diff) | |
download | php-git-7046afb5420a7488574d21e2bede26b8b13239b6.tar.gz |
Implement SeekableIterator and LimitIterator as C code.
Diffstat (limited to 'ext/spl/php_spl.c')
-rwxr-xr-x | ext/spl/php_spl.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/spl/php_spl.c b/ext/spl/php_spl.c index 282273cb19..194393c5da 100755 --- a/ext/spl/php_spl.c +++ b/ext/spl/php_spl.c @@ -174,6 +174,8 @@ PHP_FUNCTION(spl_classes) SPL_ADD_CLASS(RecursiveIteratorIterator); SPL_ADD_CLASS(FilterIterator); SPL_ADD_CLASS(ParentIterator); + SPL_ADD_CLASS(SeekableIterator); + SPL_ADD_CLASS(LimitIterator); } /* }}} */ |