diff options
author | David Croft <david@php.net> | 2001-02-05 14:29:21 +0000 |
---|---|---|
committer | David Croft <david@php.net> | 2001-02-05 14:29:21 +0000 |
commit | f182245c530301e3d4e4789dd4ef5a8732f3cb57 (patch) | |
tree | fb619ace2db422175447000145ddf589962f4820 /TODO | |
parent | fce819effad5801a0fb83add99d52e7147df92da (diff) | |
download | php-git-f182245c530301e3d4e4789dd4ef5a8732f3cb57.tar.gz |
2 things to do
Diffstat (limited to 'TODO')
-rw-r--r-- | TODO | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -5,12 +5,15 @@ Zend ---- * allow foreach ($array as $k => &$val) syntax. right now we cannot traverse an array without copying each element. + * allow foreach ($array as $k => list($a, $b)) syntax for multi + dimensional arrays. * look at replacing c-lib call tolower(). * make hash API functions work with HASH_OF() to save time. * native large number support (probably with GNU GMP) * Const'ify APIs. Right now, many functions leave parameters untouched, but don't declare those as const. This makes interaction with other interfaces difficult which pass const parameters to us. + * add try..catch/throw exception handling global ------ |