Home
last modified time | relevance | path

Searched refs:modules (Results 1 – 25 of 34) sorted by relevance

12

/PHP-7.2/ext/phar/tests/
H A Dbug65028.phpt43 "modules/cmt/setup/config.xml",
45 "modules/meta/setup/config.xml",
47 "modules/brd/misc/brdPost.php",
51 "modules/brd/setup/config.xml",
55 "modules/bwd/bwd.php",
56 "modules/bwd/setup/config.xml",
61 "modules/nws/setup/config.xml",
66 "modules/gmp/setup/config.xml",
71 "modules/mul/setup/config.xml",
77 "modules/cat/setup/config.xml",
[all …]
/PHP-7.2/win32/build/
H A Dbuildconf.js27 var modules = ""; variable
210 modules = file_get_contents("win32/build/config.w32");
232 modules += gen_modules();
236 calls = modules.match(re);
255 modules = modules.replace(re, "/* $1 */");
256 C.Write(modules);
H A Dphpize.js.in30 var modules = ""; variable
157 // first, look for modules with empty deps; emit those first
168 // now we are left with modules that have dependencies on other modules
230 modules = file_get_contents(PHP_DIR + "/script/config.w32.phpize.in");
236 // to ensure that dependent modules are emitted first
237 modules += gen_modules();
241 calls = modules.match(re);
256 modules = modules.replace(re, "/* $1 */");
257 C.Write(modules);
/PHP-7.2/
H A DMakefile.global14 build-modules: $(PHP_MODULES) $(PHP_ZEND_EX)
42 install-modules: build-modules
43 @test -d modules && \
46 @rm -f modules/*.la >/dev/null 2>&1
47 @$(INSTALL) modules/* $(INSTALL_ROOT)$(EXTENSION_DIR)
104 …s.php -n -c $(top_builddir)/tmp-php.ini -d extension_dir=$(top_builddir)/modules/ $(PHP_TEST_SHARE…
118 …ATH) $(SAPI_MILTER_PATH) $(SAPI_LITESPEED_PATH) $(SAPI_FPM_PATH) $(OVERALL_TARGET) modules/* libs/*
140 …ATH) $(SAPI_MILTER_PATH) $(SAPI_LITESPEED_PATH) $(SAPI_FPM_PATH) $(OVERALL_TARGET) modules/* libs/*
H A DREADME.UNIX-BUILD-SYSTEM16 build-modules: builds and copies dynamic modules into modules/
53 modules, two in C and one in C++. And, depending on the user's wishes,
H A D.travis.yml69 …DEBUG == 0 ]; then echo "-d opcache.enable_cli=1 -d zend_extension=`pwd`/modules/opcache.so"; fi) …
H A DREADME.SELF-CONTAINED-EXTENSIONS107 ext_skel can be of great help when creating the common code for all modules
113 modules, use a simple module as a starting point and add your own code.
H A D.gitignore74 modules
H A DINSTALL249 LoadModule php7_module modules/libphp7.so
336 server.modules += ( "mod_fastcgi" )
674 modules, and each can be installed and removed independently from the
682 deactivate these modules in your php.ini.
709 PHP modules. If you find you do not want to create some of these
710 modules, use the no_* FLAVOR. For example, to skip building the imap
822 In the last section, PHP was installed with only core modules. It's
1272 --php-sapis Show all SAPI modules available
1710 LoadModule php_module modules/mod_php.so
1711 LoadModule php7_module modules/libphp7.so
[all …]
H A DREADME.TESTING210 PHP tests under any of the SAPI modules that are direct executables,
H A DUPGRADING5 3. Changes in SAPI modules
174 3. Changes in SAPI modules
H A DREADME.EXT_SKEL57 When you need to expose module functions to other modules, expose functions
H A Dconfigure.ac316 AC_MSG_CHECKING([whether to force non-PIC code in shared modules])
343 PHP_HELP_SEPARATOR([SAPI modules:])
357 PHP_CONFIGURE_PART(Configuring SAPI modules)
1203 phplibdir=`pwd`/modules
H A DCODING_STANDARDS203 of PHP or one of its standard modules, please maintain the K&R
H A Dacinclude.m4281 dnl table. Otherwise, dynamic modules would not be able to resolve
840 install_modules="install-modules"
1013 dnl list, so that modules can be init'd in the correct order
/PHP-7.2/scripts/
H A Dphpize.m4152 install_targets="install-modules install-headers"
153 phplibdir="`pwd`/modules"
197 test -d modules || $php_shtool mkdir modules
/PHP-7.2/scripts/dev/
H A Dphpextdist15 rm -rf modules *.lo *.o *.la config.status config.cache \
/PHP-7.2/ext/standard/tests/general_functions/
H A Dget_loaded_extensions_basic.phpt6 * Description: Returns an array with the names of all modules compiled and loaded
H A Dget_loaded_extensions_error.phpt6 * Description: Returns an array with the names of all modules compiled and loaded
/PHP-7.2/ext/phar/
H A DMakefile.frag19 …. $(top_builddir)/modules/$$i.la; $(top_srcdir)/build/shtool echo -n -- " -d extension=$$dlname"; \
/PHP-7.2/sapi/apache2handler/
H A DREADME16 * Thread safety of external PHP modules
/PHP-7.2/Zend/
H A Dzend_builtin_functions.c2071 zval *modules, const_val; in ZEND_FUNCTION() local
2076 modules = ecalloc(zend_hash_num_elements(&module_registry) + 2, sizeof(zval)); in ZEND_FUNCTION()
2101 if (Z_TYPE(modules[module_number]) == IS_UNDEF) { in ZEND_FUNCTION()
2102 array_init(&modules[module_number]); in ZEND_FUNCTION()
2103 add_assoc_zval(return_value, module_names[module_number], &modules[module_number]); in ZEND_FUNCTION()
2107 zend_hash_add_new(Z_ARRVAL(modules[module_number]), val->name, &const_val); in ZEND_FUNCTION()
2111 efree(modules); in ZEND_FUNCTION()
/PHP-7.2/ext/
H A Dext_skel236 modules
/PHP-7.2/win32/
H A Dinstall.txt223 CGI executable, a CLI executable, and server modules, but they are
225 packages have the server modules in the sapi folder, PHP 5
233 Here is a list of server modules shipped with PHP 5:
237 Server modules provide significantly better performance and additional
246 The SAPI modules have been significantly improved as of the 4.1
248 other server modules failing, such as ASP.
250 The CGI and CLI binaries, and the web server modules all require the
1062 When building PHP modules, it's important to have known-good versions
1090 Collection of PECL modules from the PHP Downloads page, or by
1534 LoadModule php_module modules/mod_php.so
[all …]
/PHP-7.2/ext/dba/
H A Dconfig.m473 [ --enable-dba Build DBA with bundled modules. To build shared DBA
586 dnl Bundled modules that should be enabled by default if any other option is enabled

Completed in 133 milliseconds

12