-
Notifications
You must be signed in to change notification settings - Fork 7
/
removed.php
64 lines (59 loc) · 1.98 KB
/
removed.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<?php
/**
* (PHP 4 >= 4.0.5, PHP 5, PHP 7)<br/>
* Convert character encoding as output buffer handler
* @link http://php.net/manual/en/function.ob-iconv-handler.php
* @param string $contents
* @param int $status
* @return string See <b>ob_start</b> for information about this handler
* return values.
*/
function ob_iconv_handler(string $contents, int $status): string {}
/**
* (PHP 5, PHP 7)<br/>
* ob_start callback function to repair the buffer
* @link http://php.net/manual/en/function.ob-tidyhandler.php
* @param string $input <p>
* The buffer.
* </p>
* @param int $mode [optional] <p>
* The buffer mode.
* </p>
* @return string the modified buffer.
*/
function ob_tidyhandler(string $input, int $mode = null): string {}
/**
* (PHP 4, PHP 5 < 5.4.0)<br/>
* Register one or more global variables with the current session
* @link http://php.net/manual/en/function.session-register.php
* @param mixed $name <p>
* A string holding the name of a variable or an array consisting of
* variable names or other arrays.
* </p>
* @param mixed $_ [optional]
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
*/
function session_register($name, $_ = null): bool {}
/**
* (PHP 4, PHP 5 < 5.4.0)<br/>
* Unregister a global variable from the current session
* @link http://php.net/manual/en/function.session-unregister.php
* @param string $name <p>
* The variable name.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
*/
function session_unregister(string $name): bool {}
/**
* (PHP 4, PHP 5 < 5.4.0)<br/>
* Find out whether a global variable is registered in a session
* @link http://php.net/manual/en/function.session-is-registered.php
* @param string $name <p>
* The variable name.
* </p>
* @return bool <b>session_is_registered</b> returns <b>TRUE</b> if there is a
* global variable with the name <i>name</i> registered in
* the current session, <b>FALSE</b> otherwise.
*/
function session_is_registered(string $name): bool {}
?>