inside of my PHP extension,

How can I create an op_array with no opcodes in it?

Thanks!

link|improve this question

80% accept rate
feedback

1 Answer

You can use init_op_array(), declared in from zend_compile.h:

zend_op_array * op_array = emalloc(sizeof(zend_op_array));
init_op_array(op_array, type, INITIAL_OP_ARRAY_SIZE TSRMLS_CC);

type can be ZEND_EVAL_CODE or ZEND_USER_FUNCTION.

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.