Home
last modified time | relevance | path

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

12345678910>>...31

/PHP-8.0/sapi/fpm/fpm/
H A Dfpm_stdio.c37 close(fd); in fpm_stdio_init_main()
40 close(fd); in fpm_stdio_init_main()
323 close(fd_stdout[1]);
324 close(fd_stderr[1]);
344 close(fd_stdout[1]);
345 close(fd_stderr[1]);
347 close(fd_stdout[0]);
348 close(fd_stderr[0]);
358 close(fd_stdout[0]); close(fd_stdout[1]);
359 close(fd_stderr[0]); close(fd_stderr[1]);
[all …]
/PHP-8.0/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.0/ext/standard/tests/http/
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 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 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.0/ext/session/tests/
H A Dsession_set_save_handler_class_013.phpt2 Test session_set_save_handler() : incorrect arguments for existing handler close
13 echo "*** Testing session_set_save_handler() : incorrect arguments for existing handler close ***\n…
27 public function close() {
28 return parent::close(false);
40 *** Testing session_set_save_handler() : incorrect arguments for existing handler close ***
50 Fatal error: Uncaught ArgumentCountError: SessionHandler::close() expects exactly 0 arguments, 1 gi…
52 #0 %s(%d): SessionHandler->close(false)
53 #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
18 function close() {
19 echo "close: goodbye cruel world\n";
39 session_set_save_handler('open', 'close', 'read', 'write', 'destroy', 'gc');
46 close: goodbye cruel world
50 #0 [internal function]: close()
H A Dsession_set_save_handler_class_006.phpt2 Test session_set_save_handler() : using objects in close
13 echo "*** Testing session_set_save_handler() : using objects in close ***\n";
24 public function close() {
27 return parent::close();
40 *** Testing session_set_save_handler() : using objects in close ***
H A Dbug60634_error_1.phpt18 function close() {
19 echo "close: goodbye cruel world\n";
40 session_set_save_handler('open', 'close', 'read', 'write', 'destroy', 'gc');
46 FIXME: Something wrong. It should try to close after error, otherwise session
H A Dbug60634.phpt18 function close() {
19 die("close: goodbye cruel world\n");
38 session_set_save_handler('open', 'close', 'read', 'write', 'destroy', 'gc');
H A Dsession_set_save_handler_class_007.phpt33 public function close() {
36 return parent::close();
46 // explicit close
54 // implicit close (called by shutdown function)
/PHP-8.0/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.0/ext/zip/tests/
H A Dbug64342_0.phpt21 $res = $zip->close();
23 echo "close ok\n";
25 echo "close failed\n";
44 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
20 var_dump($zip->close());
28 Warning: ZipArchive::close(): %s: No such file or directory in %s%ebug70322.php on line %d
H A Doo_close.phpt2 zip::close() function
17 $zip->close();
/PHP-8.0/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.0/ext/mysqli/tests/
H A Dbug36420.phpt2 Bug #36420 (segfault when access result->num_rows after calling result->close())
16 $result->close();
23 $mysqli->close();
H A Dmysqli_stmt_attr_set.phpt43 $stmt->close();
61 $res->close();
62 $stmt->close();
81 $res->close();
82 $stmt->close();
101 $res->close();
102 $stmt->close();
131 $stmt->close();
141 $stmt->close();
155 $stmt->close();
[all …]
/PHP-8.0/ext/zip/examples/
H A Dencryption.php17 $zip->close();
26 $zip->close();
38 $zip->close();
/PHP-8.0/ext/phar/tests/zip/files/
H A Dmake_invalid_tar.php.inc4 function close()
6 parent::close();
/PHP-8.0/ext/xmlreader/tests/
H A D002.phpt21 $reader->close();
29 $reader->close();
34 $reader->close();
/PHP-8.0/ext/sqlite3/tests/
H A Dsqlite3_01_open.phpt2 SQLite3::open/close tests
11 var_dump($db->close());
H A Dbug47159.phpt12 var_dump($stmt->close());
14 var_dump($db->close());

Completed in 122 milliseconds

12345678910>>...31