Home
last modified time | relevance | path

Searched refs:module (Results 1 – 25 of 146) sorted by path

123456

/PHP-5.5/
H A D.gdbinit28 ZTS detection is automatically based on ext/standard module struct
H A D.gitignore242 sapi/apache/libphp5.module
243 sapi/apache2handler/libphp5.module
244 sapi/apache_hooks/libphp5.module
H A DCODING_STANDARDS33 same module, and rely on each other non-trivial behavior, should be
176 Unexposed module function should be static and should not be defined in
181 2. Main module source file must be named 'modulename.c'.
281 Any authoring information (known bugs, future directions of the module).
H A DINSTALL69 servers PHP has a direct module interface (also called SAPI). These
72 Microsoft module interface (OmniHTTPd for example). If PHP has no
73 module support for your web server, you can always use it as a CGI or
92 Unix and Windows with server module interfaces and CGI executables. You
142 * Any module specific components (such as GD, PDF libs, etc.)
186 6. ./configure --prefix=/www --enable-module=so
204 restart apache for the new module to take effect. A recompile of
223 module on your system. The make install from above may have already
915 module, set the FLAVOR to no_imap.
1707 Running PHP as an Apache module
[all …]
H A DMakefile.global121 …stamp-h sapi/apache/libphp$(PHP_MAJOR_VERSION).module sapi/apache_hooks/libphp$(PHP_MAJOR_VERSION)…
H A DNEWS1821 The implementation is more robust that the proctitle PECL module. More
2880 . Fixed bug #62064 (memory leak in the XML Writer module).
3178 one SAPI module the same time. FR #53271, FR #52419. (Jani)
3499 . Fixed bug #60749 (SNMP module should not strip non-standard SNMP port
6056 - Added litespeed SAPI module. (George Wang)
7782 - ext/bcmath initialization code is moved from request startup to module
7968 module dependency). (wharmby at uk dot ibm dot com, Tony)
8147 - Added automatic module globals management. (Dmitry)
8528 - Fixed bug #37418 (tidy module crashes on shutdown). (Tony)
9132 - PHP extension loading mechanism with support for module
[all …]
H A DREADME.EXTENSIONS1 This file describes extension module API details. Refer to
9 Between PHP 4.0.6 and 4.1.0, the Zend module struct changed in a way
13 If this was your old module entry:
H A DREADME.EXT_SKEL8 It's a tool for automatically creating the basic framework for a PHP module
28 libraries or functions in them, the module is already almost ready to be
39 But if you already have planned the overall scheme of your module, what
57 When you need to expose module functions to other modules, expose functions
111 function to help first time module writers to get started and testing
112 configuring and compiling their module. This option turns off all such things
113 which may just annoy experienced PHP module coders. Especially useful with
117 which will leave out also all module specific stuff and write just function
120 pasting into an already existing module.
H A DREADME.SELF-CONTAINED-EXTENSIONS11 - Source code for your module
45 It is time to finish the module. Run:
59 The MySQL module will either use the embedded MySQL client
102 plan to distribute your module with PHP, these facilities allow you
103 to integrate your module easily into the main PHP module framework.
113 modules, use a simple module as a starting point and add your own code.
141 as a shared module. I will explain now how you can add shared module
142 support to an existing module called foo.
H A DREADME.UNIX-BUILD-SYSTEM54 the extension will even be built as a dynamic module.
65 If you previously built sub-libraries for this module, add
107 module, program, etc).
H A Dacinclude.m4832 dnl PHP_SHARED_MODULE(module-name, object-var, build-dir, cxx, zend_ext)
834 dnl Basically sets up the link-stage for building module-name
843 …DFLAGS) -Wl,-G -o '$3'/$1.la -export-dynamic -avoid-version -prefer-pic -module -rpath $(phplibdir…
851 …A_CFLAGS) $(LDFLAGS) -o [$]@ -export-dynamic -avoid-version -prefer-pic -module -rpath $(phplibdir…
887 | one SAPI module plus CGI, CLI and FPM binaries at the same time. |
951 dnl "cxx" can be used to indicate that a C++ shared module is desired.
960 dnl ---------------------------------------------- Static module
969 dnl ---------------------------------------------- Shared module
980 …AC_DEFINE_UNQUOTED([COMPILE_DL_]translit($1,a-z_-,A-Z__), 1, Whether to build $1 as dynamic module)
985 dnl ---------------------------------------------- CLI static module
[all …]
H A Dconfigure.in393 AC_MSG_CHECKING([for chosen SAPI module])
1048 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -avoid-version -module"
1574 echo "| In order to build PHP as a Apache2 module on FreeBSD, you have to |"
/PHP-5.5/Zend/
H A DZEND_CHANGES1042 of that feature, but we'd have a COM module ready by the time
1043 PHP 4.0 is released. A CORBA module would probably follow.
H A Dzend.h536 struct _zend_module_entry *module; member
H A Dzend_API.c1750 …ts_allocate_id(module->globals_id_ptr, module->globals_size, (ts_allocate_ctor) module->globals_ct… in zend_startup_module_ex()
1753 module->globals_ctor(module->globals_ptr TSRMLS_CC); in zend_startup_module_ex()
1759 if (module->module_startup_func(module->type, module->module_number TSRMLS_CC)==FAILURE) { in zend_startup_module_ex()
1905 if (!module) { in zend_register_module_ex()
1953 return module; in zend_register_module_ex()
2356 if (module->module_started && module->module_shutdown_func) { in module_destructor()
2360 module->module_shutdown_func(module->type, module->module_number TSRMLS_CC); in module_destructor()
2371 module->globals_dtor(module->globals_ptr TSRMLS_CC); in module_destructor()
2398 if (module->request_startup_func(module->type, module->module_number TSRMLS_CC)==FAILURE) { in zend_activate_modules()
2414 module->request_shutdown_func(module->type, module->module_number TSRMLS_CC); in module_registry_cleanup()
[all …]
H A Dzend_API.h114 #define ZEND_MODULE_STARTUP_N(module) zm_startup_##module argument
115 #define ZEND_MODULE_SHUTDOWN_N(module) zm_shutdown_##module argument
116 #define ZEND_MODULE_ACTIVATE_N(module) zm_activate_##module argument
117 #define ZEND_MODULE_DEACTIVATE_N(module) zm_deactivate_##module argument
118 #define ZEND_MODULE_POST_ZEND_DEACTIVATE_N(module) zm_post_zend_deactivate_##module argument
119 #define ZEND_MODULE_INFO_N(module) zm_info_##module argument
120 #define ZEND_MODULE_GLOBALS_CTOR_N(module) zm_globals_ctor_##module argument
121 #define ZEND_MODULE_GLOBALS_DTOR_N(module) zm_globals_dtor_##module argument
124 #define ZEND_MODULE_STARTUP_D(module) int ZEND_MODULE_STARTUP_N(module)(INIT_FUNC_ARGS) argument
130 #define ZEND_MODULE_GLOBALS_CTOR_D(module) void ZEND_MODULE_GLOBALS_CTOR_N(module)(zend_##module##… argument
[all …]
H A Dzend_builtin_functions.c1888 static int add_extension_info(zend_module_entry *module, void *arg TSRMLS_DC) in add_extension_info() argument
1891 add_next_index_string(name_array, module->name, 1); in add_extension_info()
1960 zend_module_entry *module; in ZEND_FUNCTION() local
1968 while (zend_hash_get_current_data_ex(&module_registry, (void *) &module, &pos) != FAILURE) { in ZEND_FUNCTION()
1969 module_names[module->module_number] = (char *)module->name; in ZEND_FUNCTION()
2442 zend_module_entry *module; in ZEND_FUNCTION() local
2454 extension_name_len+1, (void**)&module) == FAILURE) { in ZEND_FUNCTION()
2460 if (module->functions) { in ZEND_FUNCTION()
2469 && zif->internal_function.module == module) { in ZEND_FUNCTION()
H A Dzend_closures.c162 invoke->internal_function.module = 0; in zend_get_closure_invoke_method()
H A Dzend_compile.c6881 ce->info.internal.module = NULL; in zend_initialize_class_data()
H A Dzend_compile.h331 struct _zend_module_entry *module; member
H A Dzend_ini.h100 ZEND_API void display_ini_entries(zend_module_entry *module);
H A Dzend_modules.h127 void module_destructor(zend_module_entry *module);
128 int module_registry_cleanup(zend_module_entry *module TSRMLS_DC);
129 int module_registry_request_startup(zend_module_entry *module TSRMLS_DC);
130 int module_registry_unload_temp(const zend_module_entry *module TSRMLS_DC);
H A Dzend_object_handlers.c996 call_user_call->module = (ce->type == ZEND_INTERNAL_CLASS) ? ce->info.internal.module : NULL; in zend_get_user_call_function()
1139 …callstatic_user_call->module = (ce->type == ZEND_INTERNAL_CLASS) ? ce->info.internal.module : NU… in zend_get_user_callstatic_function()
/PHP-5.5/build/
H A Dlibtool.m41526 shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`'
4336 # Commands used to build a loadable module (assumed same as above if empty)
/PHP-5.5/ext/bz2/
H A Dconfig.m433 AC_MSG_ERROR(bz2 module requires libbz2 >= 1.0.0)

Completed in 197 milliseconds

123456