diff options
author | Marcus Boerger <helly@php.net> | 2003-07-16 15:13:23 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2003-07-16 15:13:23 +0000 |
commit | 3a49606d9d9f27142954312adad2fb81a868b258 (patch) | |
tree | 62eb790feaed69bfb41d504ce07e3fb0c8e6c7e4 /ext/spl/php_spl.c | |
parent | 8178d87d25adb2121043a510843717bb3d89ceda (diff) | |
download | php-git-3a49606d9d9f27142954312adad2fb81a868b258.tar.gz |
Add directory iterator class
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 c8a0866726..3f32948056 100755 --- a/ext/spl/php_spl.c +++ b/ext/spl/php_spl.c @@ -136,6 +136,8 @@ PHP_MINIT_FUNCTION(spl) REGISTER_SPL_IMPLEMENT(array_access, array_read); REGISTER_SPL_INTF_FUNC(array_access, set); + PHP_MINIT(spl_directory)(INIT_FUNC_ARGS_PASSTHRU); + return SUCCESS; } /* }}} */ |