1999-04-22 10:48:28 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
2000-07-24 09:40:02 +08:00
|
|
|
| PHP version 4.0 |
|
1999-04-22 10:48:28 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2000-07-24 09:40:02 +08:00
|
|
|
| Copyright (c) 1997, 1998, 1999, 2000 The PHP Group |
|
1999-04-22 10:48:28 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2000-07-24 09:40:02 +08:00
|
|
|
| This source file is subject to version 2.02 of the PHP license, |
|
|
|
|
| that is bundled with this package in the file LICENSE, and is |
|
|
|
|
| available at through the world-wide-web at |
|
|
|
|
| http://www.php.net/license/2_02.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. |
|
1999-04-22 10:48:28 +08:00
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Authors: Rasmus Lerdorf <rasmus@lerdorf.on.ca> |
|
2000-01-29 01:24:53 +08:00
|
|
|
| Zeev Suraski <zeev@zend.com> |
|
1999-04-22 10:48:28 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2000-07-24 09:40:02 +08:00
|
|
|
*/
|
|
|
|
|
1999-04-22 10:48:28 +08:00
|
|
|
/* $Id$ */
|
|
|
|
|
2000-07-03 07:46:51 +08:00
|
|
|
#ifndef PHP_VARIABLES_H
|
|
|
|
#define PHP_VARIABLES_H
|
1999-04-22 10:48:28 +08:00
|
|
|
|
2000-01-29 01:24:53 +08:00
|
|
|
#include "php.h"
|
1999-09-11 22:09:29 +08:00
|
|
|
#include "SAPI.h"
|
|
|
|
|
1999-04-22 10:48:28 +08:00
|
|
|
#define PARSE_POST 0
|
|
|
|
#define PARSE_GET 1
|
|
|
|
#define PARSE_COOKIE 2
|
|
|
|
#define PARSE_STRING 3
|
|
|
|
|
2000-09-11 22:50:26 +08:00
|
|
|
void php_treat_data(int arg, char *str, zval* destArray ELS_DC PLS_DC SLS_DC);
|
2000-11-08 02:25:29 +08:00
|
|
|
PHPAPI void php_import_environment_variables(zval *array_ptr ELS_DC PLS_DC);
|
2000-01-29 19:55:44 +08:00
|
|
|
PHPAPI void php_register_variable(char *var, char *val, pval *track_vars_array ELS_DC PLS_DC);
|
2000-12-12 18:47:47 +08:00
|
|
|
/* binary-safe version */
|
|
|
|
PHPAPI void php_register_variable_safe(char *var, char *val, int val_len, pval *track_vars_array ELS_DC PLS_DC);
|
2000-02-20 04:12:26 +08:00
|
|
|
PHPAPI void php_register_variable_ex(char *var, zval *val, pval *track_vars_array ELS_DC PLS_DC);
|
1999-04-22 10:48:28 +08:00
|
|
|
|
2000-02-18 04:23:59 +08:00
|
|
|
|
2000-07-03 07:46:51 +08:00
|
|
|
#endif /* PHP_VARIABLES_H */
|