#include "php_arr.h" php_array php_iterator::get_data_array();
Description: Return the value of the element at the current iterator position as a php_array. This function can be used in conjunction with an additional iterator to navigate nested arrays. If the value at the current iterator position isn't of type IS_ARRAY then this function will return a new php_array with a single element whose key is 0 and whose value is the same value and type of the data at the current iterator position and may generate a type mismatch warning if those warnings are enabled.
Errors: It is an error to call this function on an iterator in an invalid position (see php_iterator::done).