Home
last modified time | relevance | path

Searched refs:extension (Results 1 – 25 of 222) sorted by relevance

123456789

/php-src/Zend/
H A Dzend_extensions.c152 zend_extension extension; in zend_register_extension() local
154 extension = *new_extension; in zend_register_extension()
155 extension.handle = handle; in zend_register_extension()
161 if (extension.op_array_ctor) { in zend_register_extension()
164 if (extension.op_array_dtor) { in zend_register_extension()
184 if (extension->shutdown) { in zend_extension_shutdown()
185 extension->shutdown(extension); in zend_extension_shutdown()
194 if (extension->startup) { in zend_extension_startup()
195 if (extension->startup(extension)!=SUCCESS) { in zend_extension_startup()
231 DL_UNLOAD(extension->handle); in zend_extension_dtor()
[all …]
/php-src/sapi/cli/tests/
H A Dext_loading.phpt13 function loadZendExt($extension) {
17 '-dzend_extension=' . $extension,
24 echo "Only extension name:\n";
27 echo "Name with file extension:\n";
35 echo "Unknown extension name (unknown):\n";
38 echo "Name with file extension (unknown):\n";
48 Only extension name:
52 Name with file extension:
60 Unknown extension name (unknown):
63 Warning: Failed loading Zend extension 'unknown_ext' (tried: %s) in Unknown on line 0
[all …]
/php-src/docs-old/
H A Dself-contained-extensions.md1 # How to create a self-contained PHP extension
4 To create such an extension, two things are required:
23 ## Converting an existing extension
35 extension:
62 ## Defining the new extension
64 Our demo extension is called "foobar".
112 ## Creating the self-contained extension
128 ## Installing a self-contained extension
130 An extension can be installed by running:
149 building the extension.
[all …]
/php-src/scripts/dev/
H A Dfind_tested.php44 foreach($extensions as $extension) {
45 echo "$extension\n";
136 $extension = $reflectionFunction->getExtension();
137 if ($extension != null) {
138 $function_record[EXTENSION_NAME] = $extension->getName();
159 $extension = $reflectionClass->getExtension();
160 if ($extension != null) {
161 $new_method_record[EXTENSION_NAME] = $extension->getName();
/php-src/ext/spl/tests/
H A DSplFileInfo_getExtension_basic-win32.phpt10 $exts = array('.txt', '.extension', '..', '');
20 $exts = array('.txt', '.extension', '..', '');
28 string(9) "extension"
29 string(9) "extension"
H A DSplFileInfo_getExtension_basic.phpt10 $exts = array('.txt', '.extension', '..', '.', '');
20 $exts = array('.txt', '.extension', '..', '.', '');
28 string(9) "extension"
29 string(9) "extension"
H A DDirectoryIterator_getExtension_basic.phpt11 $files = array('test.txt', 'test.extension', 'test');
34 $files = array('test.txt', 'test.extension', 'test');
46 string(9) "extension"
/php-src/ext/reflection/tests/
H A DReflectionExtension_getClassNames_variation1.phpt2 ReflectionExtension::getClassNames() method on an extension with no classes
9 $extension = new ReflectionExtension('ctype');
10 var_dump($extension->getClassNames());
/php-src/ext/fileinfo/tests/
H A Dfinfo_phpinfo_basic.phpt2 Test finfo extension : loading into phpinfo()
8 echo "*** Testing finfo extension : loading info phpinfo() ***\n";
18 *** Testing finfo extension : loading info phpinfo() ***
/php-src/ext/xsl/
H A Dconfig.m49 AC_MSG_ERROR([XSL extension requires LIBXML extension, add --with-libxml])
13 AC_MSG_ERROR([XSL extension requires DOM extension, add --enable-dom])
/php-src/ext/standard/tests/file/
H A Dpathinfo_basic2.phpt59 ["extension"]=>
74 ["extension"]=>
89 ["extension"]=>
104 ["extension"]=>
119 ["extension"]=>
134 ["extension"]=>
149 ["extension"]=>
177 ["extension"]=>
192 ["extension"]=>
220 ["extension"]=>
[all …]
H A Dpathinfo_basic2-win32.phpt72 ["extension"]=>
87 ["extension"]=>
102 ["extension"]=>
117 ["extension"]=>
132 ["extension"]=>
147 ["extension"]=>
175 ["extension"]=>
190 ["extension"]=>
218 ["extension"]=>
233 ["extension"]=>
[all …]
H A Dpathinfo_basic.phpt76 ["extension"]=>
91 ["extension"]=>
106 ["extension"]=>
121 ["extension"]=>
136 ["extension"]=>
151 ["extension"]=>
166 ["extension"]=>
181 ["extension"]=>
196 ["extension"]=>
211 ["extension"]=>
[all …]
/php-src/ext/sodium/tests/
H A Dinstalled.phpt7 echo "sodium extension is available";
9 you can add regression tests for your extension here
18 sodium extension is available
/php-src/ext/dl_test/tests/
H A Dskip.inc3 // Check that the dl_test extension is built. We don't use the --EXTENSIONS--
4 // section because we want to load the extension with dl().
13 die(sprintf('skip dl_test extension is not built (tried %s)', $path));
/php-src/ext/standard/tests/strings/
H A Dpathinfo.phpt40 ["extension"]=>
50 ["extension"]=>
68 ["extension"]=>
78 ["extension"]=>
88 ["extension"]=>
/php-src/ext/sqlite3/
H A Dconfig0.m42 [whether to enable the SQLite3 extension],
12 AC_DEFINE(HAVE_SQLITE3, 1, [Define to 1 if you have the sqlite3 extension enabled.])
24 [AC_DEFINE(SQLITE_OMIT_LOAD_EXTENSION, 1, [have sqlite3 with extension support])],
/php-src/ext/tidy/tests/
H A D001.phpt7 echo "tidy extension is available";
10 tidy extension is available
/php-src/ext/zip/tests/
H A D001.phpt7 echo "zip extension is available";
10 zip extension is available
/php-src/docs/source/introduction/ides/
H A Dvisual-studio-code.rst22 C/C++ extension
25 The `C/C++ extension`_ provides most of the features we'll need for php-src development. You can
27 extension will mostly work out of the box, but it is advisable to use the ``compile_commands.json``
29 provides the extension with the necessary information about include paths and other compiler flags.
31 .. _c/c++ extension: https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools
45 To tell the C/C++ extension to use the ``compile_commands.json`` file, add the following to your
58 The C/C++ extension usually works well enough. Some people find that ``clangd`` works better.
61 conjunction with the C/C++ extension. For the two extensions not to clash, add the following to your
71 <https://clangd.llvm.org/installation.html>`__, and then install the `clangd extension`_.
72 Alternatively, you can let the extension install ``clangd`` for you. ``clangd`` requires a
[all …]
/php-src/ext/skeleton/tests/
H A D001.phpt7 echo 'The extension "%EXTNAME%" is available';
10 The extension "%EXTNAME%" is available
/php-src/ext/soap/tests/schema/
H A Dschema043.phpt12 <extension base="int">
14 </extension>
19 <extension base="tns:testType2">
21 </extension>
H A Dschema046.phpt12 <extension base="int">
14 </extension>
19 <extension base="tns:testType2">
21 </extension>
/php-src/ext/ffi/tests/
H A D001.phpt9 echo 'The extension "FFI" is available';
12 The extension "FFI" is available
/php-src/ext/dl_test/
H A Dconfig.m42 [whether to enable dl-test extension],
4 [Enable dl_test extension])])

Completed in 39 milliseconds

123456789