transversing associative arrays from C

From: Date: Thu, 25 Aug 2011 21:39:24 +0000
Subject: transversing associative arrays from C
Groups: php.internals 
Request: Send a blank email to [email protected] to get a copy of this message
Hi,

I am working on a C extension module for PHP and am wondering about an API issue.

I can see how to add to an associative array :-

   zval *aa;
   MAKE_STD_ZVAL(aa);
   array_init(aa);

   add_assoc_string(aa, "test", "test value", 1);

but how do I transverse an associative array of values in a for loop simular to using "foreach" in PHP ?

Hope this is not too OT for this list, but I could not find a better place to ask the question.

I have looked through the API SVN sources and this seems like a possible blind spot.

Many thanks in advance,

Aaron



Thread (1 message)

  • Aaron Gray
« previous php.internals (#54952) next »