mirror of
https://github.com/php/php-src.git
synced 2025-08-15 13:38:49 +02:00
45 lines
No EOL
901 B
C
45 lines
No EOL
901 B
C
#ifndef _PHP_GLOBALS_H
|
|
#define _PHP_GLOBALS_H
|
|
|
|
typedef struct _php_core_globals php_core_globals;
|
|
|
|
#ifdef ZTS
|
|
# define PLS_D php_core_globals *core_globals
|
|
# define PLS_DC , PLS_D
|
|
# define PLS_C core_globals
|
|
# define PLS_CC , PLS_C
|
|
# define PG(v) (core_globals->v)
|
|
# define PLS_FETCH() php_core_globals *core_globals = ts_resource(core_globals_id)
|
|
#else
|
|
# define PLS_D
|
|
# define PLS_DC
|
|
# define PLS_C
|
|
# define PLS_CC
|
|
# define PG(v) (core_globals.v)
|
|
# define PLS_FETCH()
|
|
extern ZEND_API php_core_globals core_globals;
|
|
#endif
|
|
|
|
|
|
struct _php_core_globals {
|
|
long magic_quotes_gpc;
|
|
long magic_quotes_runtime;
|
|
long magic_quotes_sybase;
|
|
|
|
long asp_tags;
|
|
long short_tags;
|
|
|
|
long safe_mode;
|
|
long sql_safe_mode;
|
|
char *safe_mode_exec_dir;
|
|
|
|
long track_errors;
|
|
long display_errors;
|
|
long log_errors;
|
|
|
|
char *auto_prepend_file;
|
|
char *auto_append_file;
|
|
};
|
|
|
|
|
|
#endif /* _PHP_GLOBALS_H */ |