⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.23
Server IP:
178.33.27.10
Server:
Linux cpanel.dev-unit.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Server Software:
Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
PHP Version:
8.2.11
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
local
/
src
/
xdebug-3.1.4
/
src
/
develop
/
View File Name :
develop.h
/* +----------------------------------------------------------------------+ | Xdebug | +----------------------------------------------------------------------+ | Copyright (c) 2002-2020 Derick Rethans | +----------------------------------------------------------------------+ | This source file is subject to version 1.01 of the Xdebug license, | | that is bundled with this package in the file LICENSE, and is | | available at through the world-wide-web at | | https://xdebug.org/license.php | | If you did not receive a copy of the Xdebug license and are unable | | to obtain it through the world-wide-web, please send a note to | | derick@xdebug.org so we can mail you a copy immediately. | +----------------------------------------------------------------------+ */ #ifndef __XDEBUG_DEVELOP_H__ #define __XDEBUG_DEVELOP_H__ typedef struct _xdebug_develop_globals_t { /* used for function monitoring */ zend_bool do_monitor_functions; xdebug_hash *functions_to_monitor; xdebug_llist *monitored_functions_found; /* List of functions found */ /* superglobals */ xdebug_llist server; xdebug_llist get; xdebug_llist post; xdebug_llist cookie; xdebug_llist files; xdebug_llist env; xdebug_llist request; xdebug_llist session; /* used for collection errors */ xdebug_llist *collected_errors; /* scream */ zend_bool in_at; /* overloaded var_dump */ zif_handler orig_var_dump_func; } xdebug_develop_globals_t; typedef struct _xdebug_develop_settings_t { zend_long max_stack_frames; zend_bool show_ex_trace; zend_bool show_error_trace; zend_bool show_local_vars; zend_bool force_display_errors; zend_long force_error_reporting; zend_long halt_level; zend_long cli_color; /* superglobals */ zend_bool dump_globals; zend_bool dump_once; zend_bool dump_undefined; /* scream */ zend_bool do_scream; } xdebug_develop_settings_t; void xdebug_init_develop_globals(xdebug_develop_globals_t *xg); void xdebug_deinit_develop_globals(xdebug_develop_globals_t *xg); void xdebug_develop_minit(); void xdebug_develop_mshutdown(); void xdebug_develop_rinit(); void xdebug_develop_post_deactivate(); #if PHP_VERSION_ID >= 80000 void xdebug_develop_throw_exception_hook(zend_object *exception, zval *file, zval *line, zval *code, char *code_str, zval *message); #else void xdebug_develop_throw_exception_hook(zval *exception, zval *file, zval *line, zval *code, char *code_str, zval *message); #endif void xdebug_monitor_handler(function_stack_entry *fse); #endif