Home
last modified time | relevance | path

Searched refs:dll (Results 1 – 25 of 49) sorted by last modified time

12

/PHP-7.4/
H A DNEWS2315 libcrypto-1_1-x64.dll). (Anatol)
2617 . Fixed bug #76443 (php+php_interbase.dll crash on module_shutdown). (Kalle)
H A Dphp.ini-development903 ; 'extension='php_<ext>.dll') is supported for legacy reasons and may be
H A Dphp.ini-production903 ; 'extension='php_<ext>.dll') is supported for legacy reasons and may be
/PHP-7.4/ext/fileinfo/
H A Dlibmagic.patch2800 - /* Fifth, try to get magic file relative to dll location */
/PHP-7.4/appveyor/
H A Dtest_task.bat71 copy %DEPS_DIR%\bin\libenchant_ispell.dll c:\enchant_plugins
73 copy %DEPS_DIR%\bin\libenchant_myspell.dll c:\enchant_plugins
/PHP-7.4/build/
H A Dlibtool.m41456 shrext_cmds=".dll"
1462 library_names_spec='$libname.dll.a'
1784 shrext_cmds=".dll"
4763 # built for inclusion in a dll (and should export symbols for example).
5053 # built for inclusion in a dll (and should export symbols for example).
5125 # built for inclusion in a dll (and should export symbols for example).
5777 # Tell ltmain to make .dll files, not .so files.
5778 shrext_cmds=".dll"
5780 … $lib $libobjs $compiler_flags `echo "$deplibs" | $SED -e '\''s/ -lc$//'\''` -link -dll~linknames='
/PHP-7.4/win32/build/
H A Dconfutils.js2563 var dll = "php_" + extensions_enabled[i][0] + ".dll";
2567 MF.WriteLine(" " + CMD_MOD2 + "copy $(BUILD_DIR)\\" + dll + " $(PHP_PREFIX)\\ext");
H A Dconfig.w32.h.in107 #define PHP_SHLIB_SUFFIX "dll"
H A Dmkdist.php304 foreach ($deps as $dll) {
313 if (!file_exists($dll)) {
323 $dll = $tdll; variable
325 copy($dll, "$dist_dir/" . basename($dll));
341 foreach ($ENCHANT_DLLS as $dll) {
342 $dest = "$dist_dir/$dll[0]";
343 $filename = $dll[1];
373 foreach ($pecl_dll_deps as $dll) {
378 if (!file_exists($dll)) {
385 $dll = $tdll; variable
[all …]
H A DMakefile176 …LD_DIR)\*.manifest $(BUILD_DIR)\*.dbg $(BUILD_DIR)\*.bin $(BUILD_DIR)\php*.dll $(BUILD_DIR)\php*.e…
262 …@if exist $(BUILD_DIR)\php_*.dll copy $(BUILD_DIR)\php_*.dll $(PHP_PREFIX)\ext /y >nul & dir /b $(…
263 @xcopy $(BUILD_DIR)\*.dll /exclude:$(BUILD_DIR)\extension_dlls.txt $(PHP_PREFIX) /y >nul
/PHP-7.4/ext/ffi/tests/
H A Dbug79177.phpt20 $ffi = FFI::cdef($header, 'php_zend_test.dll');
H A Dbug79532.phpt20 $ffi = FFI::cdef($header, 'php_zend_test.dll');
H A Dbug79096.phpt24 $ffi = FFI::cdef($header, 'php_zend_test.dll');
H A Dutils.inc15 … return "php" . PHP_MAJOR_VERSION . (PHP_ZTS ? "ts" : "") . (PHP_DEBUG ? "_debug" : "") . ".dll";
/PHP-7.4/ext/phar/tests/
H A Dbug71625.phpt2 Phar - Bug #71625 - Crash in php7.dll
/PHP-7.4/tests/basic/
H A Dbug71273.phpt13 …ABLE') . " -n -d html_errors=on -d extension_dir=a/�/w -d extension=php_kartoffelbrei.dll -v 2>&1";
16 var_dump(preg_match(",.+a[\\/].+[\\/]w.php_kartoffelbrei.dll.+,s", $out));
/PHP-7.4/sapi/apache2handler/
H A Dconfig.w3214 'php' + PHP_VERSION + 'apache2.dll',
32 'php' + PHP_VERSION + 'apache2_2.dll',
50 'php' + PHP_VERSION + 'apache2_4.dll',
/PHP-7.4/ext/spl/tests/
H A Ddllist_001.phpt8 $dll->pop();
13 $dll->shift();
20 $dll->push($a);
24 $dll->unshift($a);
28 $dll->push(1);
29 $dll->push(2);
32 $dll->pop();
33 $dll->pop();
36 $dll->push(NULL);
37 $dll->push(NULL);
[all …]
H A Ddllist_002.phpt5 $dll = new SplDoublyLinkedList();
6 $dll->push(2);
7 $dll->push(3);
8 $dll->push(4);
10 $dll2 = clone $dll;
13 foreach($dll as $k=>$v) {
16 foreach($dll as $k2=>$v2) {
23 foreach($dll as $k=>$v) {
25 unset($dll);
H A Ddllist_003.phpt5 $dll = new SplDoublyLinkedList();
6 $dll->push(2);
7 $dll->push(3);
8 $dll->push(4);
10 $dll->setIteratorMode(SplDoublyLinkedList::IT_MODE_LIFO);
12 foreach ($dll as $k => $v) {
16 $dll->setIteratorMode(SplDoublyLinkedList::IT_MODE_FIFO);
17 foreach ($dll as $k => $v) {
22 var_dump($dll->count());
23 foreach ($dll as $k => $v) {
[all …]
H A Ddllist_010.phpt6 $dll->push(1);
7 $dll->push(2);
8 $dll->push(3);
9 $dll->push(4);
12 $dll->rewind();
13 $dll->prev();
15 $dll->rewind();
17 $dll->next();
19 $dll->next();
20 $dll->next();
[all …]
H A Ddllist_011.phpt5 $dll = new SplDoublyLinkedList();
6 $dll->rewind();
7 $dll->prev();
8 var_dump($dll->current());
H A Ddllist_013.phpt8 $dll->add(2,5);
13 $dll->add(0,6); // 6
14 $dll->add(0,3); // 3 6
23 echo count($dll)."\n";
25 echo $dll->pop()."\n";
26 echo $dll->pop()."\n";
27 echo $dll->pop()."\n";
28 echo $dll->pop()."\n";
29 echo $dll->pop()."\n";
30 echo $dll->pop()."\n";
[all …]
H A Ddllist_memleak.phpt5 $dll = new SplDoublyLinkedList();
6 $dll->push(1);
7 $dll->push(2);
8 $dll->push(3);
9 $dll->push(4);
12 $dll->rewind();
13 echo $dll->current()."\n";
14 $dll->next();
15 $dll->next();
16 echo $dll->current()."\n";
/PHP-7.4/ext/soap/tests/
H A Dcustom_content_type.phpt19 ? ["-d", "extension_dir=" . ini_get("extension_dir"), "-d", "extension=php_soap.dll"] : [];

Completed in 95 milliseconds

12