Chris,

I have a feeling I'm missing something but from what I'm gathering you want to be able to use the key of the array right along with the value. If that's what you need then the following should work:

$array = my_array_creating_function();

while(list($key, $val) = each($array)){
   echo "<br />" . $val . " is the value of " . $key;
}


Hope this was of some help!

Chris Cranford wrote:

If I have a function that creates an array using add_assoc_string and then
adds it to the return value as add_property_zval, then how do I iterate over
the array and get the key and its value?




-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to