if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|l", &flag) == FAILURE) {
  return;
 }

Especially what's ZEND_NUM_ARGS() TSRMLS_CC doing?

link|improve this question
1  
the short answer would be...read the documentation; see google.com/search?q=ZEND_NUM_ARGS%28%29 – Steven A. Lowe Nov 16 '10 at 6:44
@Steven: Actually, that is C code for the PHP language. – BoltClock Nov 16 '10 at 6:45
1  
That looks like C code for a PHP extension. – Jacob Relkin Nov 16 '10 at 6:45
@Bolt I stand (sit, actually) corrected; which 10 seconds with the documentation available from google told me right after i clicked the add comment button [you guys are fast!] – Steven A. Lowe Nov 16 '10 at 6:47
i expect this will be closed soon, since the OP has apparently expended no effort prior to posting, but i'll leave it alone...for now – Steven A. Lowe Nov 16 '10 at 6:48
feedback

4 Answers

This Zend article says:

The bulk of the zend_parse_parameters() block will almost always look the same. ZEND_NUM_ARGS() provides a hint to the Zend Engine about the parameters which are to be retrieved, TSRMLS_CC is present to ensure thread safety

link|improve this answer
Can you elaborate about TSRMLS_CC ? – ccr Nov 16 '10 at 6:50
feedback

It looks like TSRMLS_CC is a macro that might expand to nothing or it might expand to an extra argument with a comma thrown in there:

http://blog.golemon.com/2006/06/what-heck-is-tsrmlscc-anyway.html

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.