diff options
author | Marcus Boerger <helly@php.net> | 2003-07-19 20:54:22 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2003-07-19 20:54:22 +0000 |
commit | 173cb1436fb57035f12e08578b14a6ef89e2a55d (patch) | |
tree | dfd33d1c7d0d35773ed8581df2fa49025d13396d /ext/spl/php_spl.c | |
parent | 9556c6c27e5388ce36707065476549ebc181cd5d (diff) | |
download | php-git-173cb1436fb57035f12e08578b14a6ef89e2a55d.tar.gz |
Add class spl_array which is an array wrapper
Diffstat (limited to 'ext/spl/php_spl.c')
-rwxr-xr-x | ext/spl/php_spl.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/spl/php_spl.c b/ext/spl/php_spl.c index 3f32948056..1dc8b94b5a 100755 --- a/ext/spl/php_spl.c +++ b/ext/spl/php_spl.c @@ -136,6 +136,7 @@ PHP_MINIT_FUNCTION(spl) REGISTER_SPL_IMPLEMENT(array_access, array_read); REGISTER_SPL_INTF_FUNC(array_access, set); + PHP_MINIT(spl_array)(INIT_FUNC_ARGS_PASSTHRU); PHP_MINIT(spl_directory)(INIT_FUNC_ARGS_PASSTHRU); return SUCCESS; |