I get a tricky problem when i am trying to create a php extension with c, with an array returned. I do as some tutorials said, but i need to return an array. array_init(return_array) in all examples is said to initialize an returning-array, but i find nowhere the return_array is declared. So, i got error: error C2065: 'return_array' : undeclared identifier, however, if i add :

zval * return_array ;

But it throws your app cannot read address 000000f why?

Can you give me a detailed extension example containing array-returning....thanx millions times

link|improve this question

69% accept rate
look at nearly any function that returns an array. can you post the full code? – mfonda Jan 8 '11 at 4:33
feedback

1 Answer

If you want to return the array, just initialize return_value:

array_init(return_value);

return_value is a zval*, declared by the PHP_FUNCTION() macro.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.