Skip to content

Commit

Permalink
Merge branch 'process-globals' into zval-indirect-support
Browse files Browse the repository at this point in the history
  • Loading branch information
joehoyle committed Jul 19, 2023
2 parents c833e8d + 0a2ecbc commit 3f5d53e
Show file tree
Hide file tree
Showing 11 changed files with 1,385 additions and 23 deletions.
38 changes: 37 additions & 1 deletion allowed_bindings.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ bind! {
// ext_php_rs_is_kown_valid_utf8,
// ext_php_rs_set_kown_valid_utf8,
object_properties_init,
php_error_docref,
php_info_print_table_end,
php_info_print_table_header,
php_info_print_table_row,
Expand Down Expand Up @@ -113,6 +114,21 @@ bind! {
CONST_DEPRECATED,
CONST_NO_FILE_CACHE,
CONST_PERSISTENT,
E_ERROR,
E_WARNING,
E_PARSE,
E_NOTICE,
E_CORE_ERROR,
E_CORE_WARNING,
E_COMPILE_ERROR,
E_COMPILE_WARNING,
E_USER_ERROR,
E_USER_WARNING,
E_USER_NOTICE,
E_STRICT,
E_RECOVERABLE_ERROR,
E_DEPRECATED,
E_USER_DEPRECATED,
HT_MIN_SIZE,
IS_ARRAY,
IS_ARRAY_EX,
Expand Down Expand Up @@ -225,8 +241,28 @@ bind! {
gc_possible_root,
ZEND_ACC_NOT_SERIALIZABLE,
executor_globals,
php_core_globals,
core_globals,
sapi_globals_struct,
sapi_globals,
php_printf,
__zend_malloc,
tsrm_get_ls_cache,
executor_globals_offset
executor_globals_offset,
core_globals_offset,
sapi_globals_offset,
php_file_globals,
file_globals,
TRACK_VARS_POST,
TRACK_VARS_GET,
TRACK_VARS_COOKIE,
TRACK_VARS_SERVER,
TRACK_VARS_ENV,
TRACK_VARS_FILES,
TRACK_VARS_REQUEST,
sapi_request_info,
sapi_header_struct,
zend_is_auto_global,
zend_llist_get_next_ex,
zend_llist_get_prev_ex
}
Loading

0 comments on commit 3f5d53e

Please sign in to comment.