zend structure implementation

Implementation of All Exported FunctionsPodręcznik PHPPoprzedniRozdział 31. Source DiscussionNastępnyImplementation of All Exported FunctionsImplementing the exported functions is the final step. The example function in first_module looks like this: ZEND_FUNCTION(first_module) { long parameter; if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &parameter) == FAILURE) { return; } RETURN_LONG(parameter); } The function declaration is done using ZEND_FUNCTION, which corresponds to ZEND_FE in the function entry table (discussed earlier). After the declaration, code for checking and retrieving the function's arguments, argument conversion, and return value generation follows (more on this later). PoprzedniSpis treściNastępnyCreation of get_module()Początek rozdziałuSummary
Wyszukiwarka

Podobne podstrony:
structure implementation model9D33AD
zend structure headers
zend structure get module
zend structure module block
zend structure
structure implementation model?E0DEF9
zend structure summary
zend structure exporting functions
zend structure function block
structure implementation model?B2D93E
structure the test implementation?B73625
structure the implementation modelP5A84E
structure test implementation
structure test implementation
structure the test implementationW97B052

więcej podobnych podstron