summaryrefslogtreecommitdiff
path: root/ext/spl/spl_iterators.h
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2006-05-18 21:42:58 +0000
committerMarcus Boerger <helly@php.net>2006-05-18 21:42:58 +0000
commit7d79686f457e42aecad08a8cf7b4f4168c9ffbb2 (patch)
tree730a4b15f532184ad9ca0e4d29c8df7abcb07632 /ext/spl/spl_iterators.h
parent80d7ac0e9e5283a755ff555ecbd1bec6fb06d45f (diff)
downloadphp-git-7d79686f457e42aecad08a8cf7b4f4168c9ffbb2.tar.gz
- MFH Fixed CachingIterator issues with string conversion/__toString()
Partly by adding new mode TOSTRING_USE_INNER
Diffstat (limited to 'ext/spl/spl_iterators.h')
-rwxr-xr-xext/spl/spl_iterators.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/ext/spl/spl_iterators.h b/ext/spl/spl_iterators.h
index a4884fb067..0154dba2b6 100755
--- a/ext/spl/spl_iterators.h
+++ b/ext/spl/spl_iterators.h
@@ -78,9 +78,10 @@ typedef enum {
enum {
/* public */
CIT_CALL_TOSTRING = 0x00000001,
- CIT_CATCH_GET_CHILD = 0x00000002,
- CIT_TOSTRING_USE_KEY = 0x00000010,
- CIT_TOSTRING_USE_CURRENT = 0x00000020,
+ CIT_TOSTRING_USE_KEY = 0x00000002,
+ CIT_TOSTRING_USE_CURRENT = 0x00000004,
+ CIT_TOSTRING_USE_INNER = 0x00000008,
+ CIT_CATCH_GET_CHILD = 0x00000010,
CIT_FULL_CACHE = 0x00000100,
CIT_PUBLIC = 0x0000FFFF,
/* private */