We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 80e448c + ede1d8e commit bb8f608Copy full SHA for bb8f608
src/zend/globals.rs
@@ -61,6 +61,16 @@ impl ExecutorGlobals {
61
unsafe { self.class_table.as_ref() }
62
}
63
64
+ /// Attempts to retrieve the global functions hash table.
65
+ pub fn function_table(&self) -> Option<&ZendHashTable> {
66
+ unsafe { self.function_table.as_ref() }
67
+ }
68
+
69
+ /// Attempts to retrieve the global functions hash table as mutable.
70
+ pub fn function_table_mut(&self) -> Option<&mut ZendHashTable> {
71
+ unsafe { self.function_table.as_mut() }
72
73
74
/// Retrieves the ini values for all ini directives in the current executor
75
/// context..
76
pub fn ini_values(&self) -> HashMap<String, Option<String>> {
0 commit comments