version 1.1, 2012/02/21 23:47:51
|
version 1.1.1.2, 2014/06/15 20:03:41
|
Line 1
|
Line 1
|
|
This file describes extension module API details. Refer to |
|
README.EXT_SKEL to create extension skeleton files. Refer to |
|
Hacker's Guide for PHP internals. |
|
|
|
http://www.php.net/manual/en/internals2.php |
|
|
|
|
|
|
Between PHP 4.0.6 and 4.1.0, the Zend module struct changed in a way |
Between PHP 4.0.6 and 4.1.0, the Zend module struct changed in a way |
that broke both source and binary compatibility. If you are |
that broke both source and binary compatibility. If you are |
maintaining a third party extension, here's how to update it: |
maintaining a third party extension, here's how to update it: |
Line 30 zend_module_entry foo_module_entry = {
|
Line 38 zend_module_entry foo_module_entry = {
|
PHP_RSHUTDOWN(foo), /* per-request shutdown function */ |
PHP_RSHUTDOWN(foo), /* per-request shutdown function */ |
PHP_MINFO(foo), /* information function */ |
PHP_MINFO(foo), /* information function */ |
#if ZEND_MODULE_API_NO >= 20010901 |
#if ZEND_MODULE_API_NO >= 20010901 |
FOO_VERSION, /* extension version number (string) */ | PHP_FOO_VERSION, /* extension version number (string) */ |
#endif |
#endif |
STANDARD_MODULE_PROPERTIES |
STANDARD_MODULE_PROPERTIES |
}; |
}; |