aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe-php-shim/src
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe-php-shim/src')
-rw-r--r--crates/shirabe-php-shim/src/lib.rs24
1 files changed, 24 insertions, 0 deletions
diff --git a/crates/shirabe-php-shim/src/lib.rs b/crates/shirabe-php-shim/src/lib.rs
index e85f665..ad408ec 100644
--- a/crates/shirabe-php-shim/src/lib.rs
+++ b/crates/shirabe-php-shim/src/lib.rs
@@ -493,3 +493,27 @@ pub fn array_merge(array1: PhpMixed, array2: PhpMixed) -> PhpMixed {
pub fn substr_replace(string: &str, replace: &str, start: usize, length: usize) -> String {
todo!()
}
+
+pub fn constant(name: &str) -> PhpMixed {
+ todo!()
+}
+
+pub fn get_loaded_extensions() -> Vec<String> {
+ todo!()
+}
+
+pub fn phpversion(extension: &str) -> Option<String> {
+ todo!()
+}
+
+pub fn ob_start() -> bool {
+ todo!()
+}
+
+pub fn ob_get_clean() -> Option<String> {
+ todo!()
+}
+
+pub fn html_entity_decode(s: &str) -> String {
+ todo!()
+}