03-20-2008, 09:02 PM
|
#7 (permalink)
|
|
The Acquainted
Join Date: Nov 2007
Location: Netherlands
Posts: 113
Thanks: 11
|
Actually, there is a faster way for doing a foreach with key and value:
PHP Code:
$key = array_keys($aHash); $size = count($key); for ($i=0; $i<$size; $i++) $aHash[$key[$i]] .= "a";
source
|
|
|
|