Skip to content

Commit 9173f06

Browse files
authored
Merge pull request #250 from davidcole1340/sapi-globals
Add support for SapiGlobals
2 parents c564f55 + 8464a25 commit 9173f06

File tree

8 files changed

+1003
-126
lines changed

8 files changed

+1003
-126
lines changed

allowed_bindings.rs

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,16 +226,24 @@ bind! {
226226
executor_globals,
227227
php_core_globals,
228228
core_globals,
229+
sapi_globals_struct,
230+
sapi_globals,
229231
php_printf,
230232
__zend_malloc,
231233
tsrm_get_ls_cache,
232234
executor_globals_offset,
233235
core_globals_offset,
236+
sapi_globals_offset,
234237
TRACK_VARS_POST,
235238
TRACK_VARS_GET,
236239
TRACK_VARS_COOKIE,
237240
TRACK_VARS_SERVER,
238241
TRACK_VARS_ENV,
239242
TRACK_VARS_FILES,
240-
TRACK_VARS_REQUEST
243+
TRACK_VARS_REQUEST,
244+
sapi_request_info,
245+
sapi_header_struct,
246+
zend_is_auto_global,
247+
zend_llist_get_next_ex,
248+
zend_llist_get_prev_ex
241249
}

0 commit comments

Comments
 (0)