/PHP-8.0/sapi/fpm/fpm/ |
H A D | fpm_events.c | 190 module->add(ev); in fpm_event_queue_add() 242 module->clean(); in fpm_event_queue_destroy() 260 if (module) { in fpm_event_pre_init() 268 if (module) { in fpm_event_pre_init() 276 if (module) { in fpm_event_pre_init() 284 if (module) { in fpm_event_pre_init() 292 if (module) { in fpm_event_pre_init() 300 if (module) { in fpm_event_pre_init() 317 return module ? module->name : NULL; in fpm_event_machanism_name() 322 return module ? module->support_edge_trigger : 0; in fpm_event_support_edge_trigger() [all …]
|
/PHP-8.0/ext/pdo_oci/tests/ |
H A D | pdo_oci_attr_module.phpt | 2 PDO_OCI: Attribute: Setting session module 14 $query = 'select module from v$session where sid = sys_context(\'USERENV\', \'SID\')'; 18 var_dump($dbh->setAttribute(PDO::OCI_ATTR_MODULE, "some module")); 23 var_dump($row['module']); 30 var_dump($row['module']); 37 var_dump($row['module']); 44 MODULE SET: string(11) "some module"
|
/PHP-8.0/ext/standard/tests/general_functions/ |
H A D | dl-full-path-not-supported.phpt | 2 dl() fails when trying to load full path to module 17 var_dump(dl('/path/to/module')); 21 Warning: dl(): Temporary module name should contain only filename in %s on line %d
|
/PHP-8.0/ext/session/tests/ |
H A D | bug74833.phpt | 2 Bug #74833 Session module number is uninitialized when SID is reset 13 /* Ensure the SID constant has correct module number. */
|
H A D | bug65475.phpt | 12 echo "Testing file module".PHP_EOL; 30 Testing file module
|
H A D | bug73100.phpt | 27 Warning: session_module_name(): Session save handler module cannot be changed when a session is act… 29 session_module_name(): Argument #1 ($module) cannot be "user"
|
H A D | session_set_save_handler_variation1.phpt | 26 Warning: session_module_name(): Session handler module "" cannot be found in %s on line %d 30 Warning: session_module_name(): Session handler module "blah" cannot be found in %s on line %d
|
H A D | session_set_save_handler_closures.phpt | 56 Warning: session_module_name(): Session handler module "" cannot be found in %s on line %d 59 Warning: session_module_name(): Session handler module "blah" cannot be found in %s on line %d 62 Warning: session_module_name(): Session handler module "foo" cannot be found in %s on line %d
|
H A D | bug71162.phpt | 9 Current session module is designed to write empty session always. In addition, current session modu…
|
H A D | session_set_save_handler_basic.phpt | 63 Warning: session_module_name(): Session handler module "" cannot be found in %s on line %d 66 Warning: session_module_name(): Session handler module "blah" cannot be found in %s on line %d 69 Warning: session_module_name(): Session handler module "foo" cannot be found in %s on line %d
|
/PHP-8.0/Zend/ |
H A D | zend_API.c | 1865 …ts_allocate_id(module->globals_id_ptr, module->globals_size, (ts_allocate_ctor) module->globals_ct… in zend_startup_module_ex() 1868 module->globals_ctor(module->globals_ptr); in zend_startup_module_ex() 1874 if (module->module_startup_func(module->type, module->module_number)==FAILURE) { in zend_startup_module_ex() 2018 if (!module) { in zend_register_module_ex() 2071 return module; in zend_register_module_ex() 2631 module->module_shutdown_func(module->type, module->module_number); in module_destructor() 2648 module->globals_dtor(module->globals_ptr); in module_destructor() 2673 if (module->request_startup_func(module->type, module->module_number)==FAILURE) { in zend_activate_modules() 2695 module->request_shutdown_func(module->type, module->module_number); in zend_deactivate_modules() 2704 module->request_shutdown_func(module->type, module->module_number); in zend_deactivate_modules() [all …]
|
H A D | zend_modules.h | 126 void module_destructor(zend_module_entry *module); 127 int module_registry_request_startup(zend_module_entry *module); 128 int module_registry_unload_temp(const zend_module_entry *module);
|
/PHP-8.0/docs/ |
H A D | self-contained-extensions.md | 7 * Source code for your module 41 It is time to finish the module. Run: 59 The MySQL module will either use the embedded MySQL client library or the MySQL 99 distribute your module with PHP, these facilities allow you to integrate your 100 module easily into the main PHP module framework. 110 modules, use a simple module as a starting point and add your own code. 138 ## Adding shared module support to a module 141 module. The following will explain now how you can add shared module support to 142 an existing module called `foo`.
|
/PHP-8.0/ext/mysqlnd/ |
H A D | mysqlnd_reverse_api.c | 60 …zend_hash_str_add_ptr(&mysqlnd_api_ext_ht, apiext->module->name, strlen(apiext->module->name), (vo… in mysqlnd_reverse_api_register_api()
|
H A D | mysqlnd_reverse_api.h | 23 zend_module_entry * module; member
|
/PHP-8.0/sapi/phpdbg/ |
H A D | phpdbg_wait.c | 202 zval *module; in phpdbg_webdata_decompress() local 219 int mode = phpdbg_array_intersect(&pos, &module); in phpdbg_webdata_decompress() 222 if (strcmp(PHPDBG_NAME, Z_STRVAL_P(module))) { in phpdbg_webdata_decompress() 223 zend_hash_del(&module_registry, Z_STR_P(module)); in phpdbg_webdata_decompress() 227 if (!sapi_module.name || strcmp(sapi_module.name, Z_STRVAL_P(module))) { in phpdbg_webdata_decompress() 228 …th/to/module/%.*s.so", (int) Z_STRLEN_P(module), Z_STRVAL_P(module), (int) Z_STRLEN_P(module), Z_S… in phpdbg_webdata_decompress() 231 } while (module); in phpdbg_webdata_decompress()
|
H A D | phpdbg_webdata_transfer.c | 78 zend_module_entry *module; in phpdbg_webdata_compress() local 83 ZEND_HASH_FOREACH_PTR(&module_registry, module) { in phpdbg_webdata_compress() 85 ZVAL_STRING(value, module->name); in phpdbg_webdata_compress()
|
/PHP-8.0/ext/standard/ |
H A D | credits.c | 22 #define CREDIT_LINE(module, authors) php_info_print_table_row(2, module, authors) argument
|
/PHP-8.0/sapi/apache2handler/ |
H A D | mod_php.c | 30 AP_MODULE_DECLARE_DATA module php_module = {
|
H A D | config.w32 | 7 WARNING("Apache 2.0 module requires an --enable-zts build of PHP on windows"); 25 WARNING("Apache 2.2 module requires an --enable-zts build of PHP on windows"); 43 WARNING("Apache 2.4 module requires an --enable-zts build of PHP on windows");
|
/PHP-8.0/tests/run-test/ |
H A D | bug75042-2.phpt | 2 phpt EXTENSIONS directive with static module
|
H A D | bug75042-3.phpt | 2 phpt EXTENSIONS directive with nonexistent shared module
|
/PHP-8.0/sapi/embed/ |
H A D | EXPERIMENTAL | 1 this module is experimental,
|
/PHP-8.0/win32/build/ |
H A D | mkdist.php | 32 function get_depends($module) argument 74 $is_pecl = in_array($module, $pecl_targets); 76 $cmd = "$GLOBALS[build_dir]\\deplister.exe \"$module\" \"$GLOBALS[build_dir]\""; 120 …if (!isset($per_module_deps[basename($module)]) || !in_array($dep, $per_module_deps[basename($modu… 121 $per_module_deps[basename($module)][] = $dep;
|
/PHP-8.0/ext/reflection/ |
H A D | php_reflection.c | 956 …e == ZEND_INTERNAL_CLASS && ce->info.internal.module && !strcasecmp(ce->info.internal.module->name… in _extension_class_string() 977 module->module_number, module->name, in _extension_string() 978 (module->version == NO_VERSION_YET) ? "<no_version>" : module->version); in _extension_string() 980 if (module->deps) { in _extension_string() 1055 && fptr->internal_function.module == module) { in _extension_string() 1266 if (!module) { in reflection_extension_factory() 1272 intern->ptr = module; in reflection_extension_factory() 5688 intern->ptr = module; in ZEND_METHOD() 5761 && fptr->internal_function.module == module) { in ZEND_METHOD() 5829 …e == ZEND_INTERNAL_CLASS && ce->info.internal.module && !strcasecmp(ce->info.internal.module->name… in add_extension_class() [all …]
|