Home
last modified time | relevance | path

Searched refs:close (Results 1 – 25 of 804) sorted by relevance

12345678910>>...33

/PHP-8.1/sapi/fpm/fpm/
H A Dfpm_stdio.c38 close(fd); in fpm_stdio_init_main()
41 close(fd); in fpm_stdio_init_main()
325 close(fd_stdout[1]);
326 close(fd_stderr[1]);
346 close(fd_stdout[1]);
347 close(fd_stderr[1]);
349 close(fd_stdout[0]);
350 close(fd_stderr[0]);
360 close(fd_stdout[0]); close(fd_stdout[1]);
361 close(fd_stderr[0]); close(fd_stderr[1]);
[all …]
/PHP-8.1/Zend/tests/
H A Dbug38220.phpt12 function close() {
13 echo "close(): {$this->obj->i}\n";
41 $this->close();
71 before call close
76 close(): 1
77 after call close
86 before call close
91 close(): 2
92 after call close
/PHP-8.1/ext/standard/tests/http/
H A Dbug61548.phpt47 Connection: close
54 Connection: close
61 Connection: close
68 Connection: close
75 Connection: close
83 Connection: close
90 Connection: close
97 Connection: close
103 Connection: close
110 Connection: close
[all …]
H A Dbug65634.phpt37 echo "HTTP/1.0, connection: close:\n";
38 do_test('1.0', 'close');
46 echo "HTTP/1.1, connection: close:\n";
47 do_test('1.1', 'close');
56 Connection: close
58 HTTP/1.0, connection: close:
61 Connection: close
71 Connection: close
73 HTTP/1.1, connection: close:
76 Connection: close
H A Dbug67430.phpt23 "data://text/plain,HTTP/1.1 200\r\nConnection: close\r\n\r\n",
42 Connection: close
46 Connection: close
50 Connection: close
H A Dbug38802.phpt93 Connection: close
97 Connection: close
101 Connection: close
105 Connection: close
114 Connection: close
118 Connection: close
127 Connection: close
136 Connection: close
150 Connection: close
164 Connection: close
[all …]
H A Dignore_errors.phpt67 Connection: close
76 Connection: close
90 Connection: close
103 Connection: close
117 Connection: close
130 Connection: close
/PHP-8.1/ext/session/tests/
H A Dsession_set_save_handler_class_013.phpt2 Test session_set_save_handler() : incorrect arguments for existing handler close
15 echo "*** Testing session_set_save_handler() : incorrect arguments for existing handler close ***\n…
29 public function close(): bool {
30 return parent::close(false);
42 *** Testing session_set_save_handler() : incorrect arguments for existing handler close ***
52 Fatal error: Uncaught ArgumentCountError: SessionHandler::close() expects exactly 0 arguments, 1 gi…
54 #0 %s(%d): SessionHandler->close(false)
55 #1 [internal function]: MySession->close()
H A Dbug60634_error_5.phpt2 …mentation fault when trying to die() in SessionHandler::write()) - fatal error in close during exec
20 function close() {
21 echo "close: goodbye cruel world\n";
41 session_set_save_handler('open', 'close', 'read', 'write', 'destroy', 'gc');
48 close: goodbye cruel world
52 #0 [internal function]: close()
H A Dsession_set_save_handler_class_006.phpt2 Test session_set_save_handler() : using objects in close
15 echo "*** Testing session_set_save_handler() : using objects in close ***\n";
26 public function close(): bool {
29 return parent::close();
42 *** Testing session_set_save_handler() : using objects in close ***
H A Dbug60634_error_1.phpt20 function close() {
21 echo "close: goodbye cruel world\n";
42 session_set_save_handler('open', 'close', 'read', 'write', 'destroy', 'gc');
48 FIXME: Something wrong. It should try to close after error, otherwise session
H A Dbug60634.phpt20 function close() {
21 die("close: goodbye cruel world\n");
40 session_set_save_handler('open', 'close', 'read', 'write', 'destroy', 'gc');
/PHP-8.1/ext/tokenizer/tests/
H A Dtoken_get_all_basic.phpt9 // with php open/close tags
11 echo "-- source string with PHP open and close tags --\n";
14 // without php open/close tags testing for T_INLINE_HTML
16 echo "-- source string without PHP open and close tags --\n";
23 -- source string with PHP open and close tags --
82 -- source string without PHP open and close tags --
/PHP-8.1/ext/zip/tests/
H A Dbug64342_0.phpt19 $res = $zip->close();
21 echo "close ok\n";
23 echo "close failed\n";
42 close ok
H A Dbug70322.phpt2 Bug #70322 (ZipArchive::close() doesn't indicate errors)
4 We want to test whether ZipArchive::close() returns FALSE and raises a warning
18 var_dump($zip->close());
26 Warning: ZipArchive::close(): %s: No such file or directory in %s%ebug70322.php on line %d
/PHP-8.1/ext/standard/tests/dir/
H A Dclosedir_variation3.phpt2 Test closedir() function : usage variations - close a file pointer
6 * Create a file pointer using fopen() then try to close it using closedir()
14 echo "\n-- Try to close the file pointer using closedir() --\n";
33 -- Try to close the file pointer using closedir() --
/PHP-8.1/Zend/tests/fibers/
H A Dsuspend-in-force-close-fiber.phpt20 …ncaught FiberError: Cannot suspend in a force-closed fiber in %ssuspend-in-force-close-fiber.php:%d
22 #0 %ssuspend-in-force-close-fiber.php(%d): Fiber::suspend()
25 thrown in %ssuspend-in-force-close-fiber.php on line %d
H A Dsuspend-in-force-close-fiber-after-shutdown.phpt22 … FiberError: Cannot suspend in a force-closed fiber in %ssuspend-in-force-close-fiber-after-shutdo…
24 #0 %ssuspend-in-force-close-fiber-after-shutdown.php(%d): Fiber::suspend()
27 thrown in %ssuspend-in-force-close-fiber-after-shutdown.php on line %d
H A Dno-switch-force-close-finally.phpt26 …rError: Cannot switch fibers in current execution context in %sno-switch-force-close-finally.php:%d
28 #0 %sno-switch-force-close-finally.php(%d): Fiber->start()
31 thrown in %sno-switch-force-close-finally.php on line %d
/PHP-8.1/ext/mysqli/tests/
H A Dbug36420.phpt2 Bug #36420 (segfault when access result->num_rows after calling result->close())
17 $result->close();
24 $mysqli->close();
H A Dmysqli_stmt_attr_set.phpt44 $stmt->close();
62 $res->close();
63 $stmt->close();
82 $res->close();
83 $stmt->close();
102 $res->close();
103 $stmt->close();
132 $stmt->close();
142 $stmt->close();
156 $stmt->close();
[all …]
/PHP-8.1/ext/zip/examples/
H A Dencryption.php17 $zip->close();
26 $zip->close();
38 $zip->close();
/PHP-8.1/ext/xmlreader/tests/
H A D002.phpt21 $reader->close();
29 $reader->close();
34 $reader->close();
/PHP-8.1/ext/sqlite3/tests/
H A Dsqlite3_01_open.phpt2 SQLite3::open/close tests
11 var_dump($db->close());
/PHP-8.1/ext/phar/tests/zip/files/
H A Dmake_invalid_tar.php.inc4 function close()
6 parent::close();

Completed in 64 milliseconds

12345678910>>...33