- Notifications
You must be signed in to change notification settings - Fork 7.8k
/
Copy pathphp_variables.h
48 lines (41 loc) · 2.07 KB
/
php_variables.h
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
/*
+----------------------------------------------------------------------+
| Copyright (c) The PHP Group |
+----------------------------------------------------------------------+
| This source file is subject to version 3.01 of the PHP license, |
| that is bundled with this package in the file LICENSE, and is |
| available through the world-wide-web at the following url: |
| https://www.php.net/license/3_01.txt |
| If you did not receive a copy of the PHP license and are unable to |
| obtain it through the world-wide-web, please send a note to |
| license@php.net so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Authors: Rasmus Lerdorf <rasmus@lerdorf.on.ca> |
| Zeev Suraski <zeev@php.net> |
+----------------------------------------------------------------------+
*/
#ifndefPHP_VARIABLES_H
#definePHP_VARIABLES_H
#include"php.h"
#include"SAPI.h"
#definePARSE_POST 0
#definePARSE_GET 1
#definePARSE_COOKIE 2
#definePARSE_STRING 3
#definePARSE_ENV 4
#definePARSE_SERVER 5
#definePARSE_SESSION 6
BEGIN_EXTERN_C()
voidphp_startup_auto_globals(void);
externPHPAPIvoid (*php_import_environment_variables)(zval*array_ptr);
externPHPAPIvoid (*php_load_environment_variables)(zval*array_ptr);
PHPAPIvoidphp_register_variable(constchar*var, constchar*val, zval*track_vars_array);
/* binary-safe version */
PHPAPIvoidphp_register_variable_safe(constchar*var, constchar*val, size_tval_len, zval*track_vars_array);
PHPAPIvoidphp_register_variable_ex(constchar*var, zval*val, zval*track_vars_array);
PHPAPIvoidphp_register_known_variable(constchar*var, size_tvar_len, zval*value, zval*track_vars_array);
PHPAPIvoidphp_build_argv(constchar*s, zval*track_vars_array);
PHPAPIintphp_hash_environment(void);
END_EXTERN_C()
#defineNUM_TRACK_VARS 6
#endif/* PHP_VARIABLES_H */