From: David Croft Date: Mon, 5 Feb 2001 14:29:21 +0000 (+0000) Subject: 2 things to do X-Git-Tag: php-4.0.5RC1~363 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f182245c530301e3d4e4789dd4ef5a8732f3cb57;p=php 2 things to do --- diff --git a/TODO b/TODO index ac757ccc8f..d8148343b0 100644 --- a/TODO +++ b/TODO @@ -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 ------