diff options
author | Marcus Boerger <helly@php.net> | 2003-12-02 07:18:05 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2003-12-02 07:18:05 +0000 |
commit | 37d7555f9834bf4b3095576e893fb1a1ed4d54a4 (patch) | |
tree | 32a251c8ce314656026ec08c0bd53dcae0d99397 /ext/spl/php_spl.c | |
parent | a7217431be0286d05e1c8adb27d4e90597b0bd91 (diff) | |
download | php-git-37d7555f9834bf4b3095576e893fb1a1ed4d54a4.tar.gz |
Add classes from examples: FilterIterator, ParentIterator
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 0f8ca2da62..282273cb19 100755 --- a/ext/spl/php_spl.c +++ b/ext/spl/php_spl.c @@ -172,6 +172,8 @@ PHP_FUNCTION(spl_classes) SPL_ADD_CLASS(DirectoryIterator); SPL_ADD_CLASS(RecursiveIterator); SPL_ADD_CLASS(RecursiveIteratorIterator); + SPL_ADD_CLASS(FilterIterator); + SPL_ADD_CLASS(ParentIterator); } /* }}} */ |