summaryrefslogtreecommitdiff
path: root/ext/spl/php_spl.c
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2003-12-06 19:21:02 +0000
committerMarcus Boerger <helly@php.net>2003-12-06 19:21:02 +0000
commit7046afb5420a7488574d21e2bede26b8b13239b6 (patch)
tree5dc228bd8b4c97d1beed9f55f95df7459e337395 /ext/spl/php_spl.c
parent8e188f9d038de465eed9ba2bac5881939860ad56 (diff)
downloadphp-git-7046afb5420a7488574d21e2bede26b8b13239b6.tar.gz
Implement SeekableIterator and LimitIterator as C code.
Diffstat (limited to 'ext/spl/php_spl.c')
-rwxr-xr-xext/spl/php_spl.c2
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);
}
/* }}} */