Module _06_module

Source
Expand description

§Module

Just to clarify, in PHP’s source code, PHP extensions are named as “PHP modules.”

PHP extensions (aka PHP “modules”) are loaded in INI files with an “extension=pib.so” line.

Refer: https://www.phpinternalsbook.com/php7/extensions_design/zend_extensions.html#on-differences-between-php-and-zend-extensions

Module is the entry of registering hooks, functions, classes, ini properties, constants, etc.

Modules§

_01_hooks
Hooks
_02_register_functions
Register functions
_03_register_constants
Register constants
_04_register_ini_settings
Register ini settings
_05_extension_information
Extension information
_06_register_class
Register class
_07_register_interface
Register interface
_08_register_enumphper_enum_supported
Register Enums