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.rs12
1 files changed, 12 insertions, 0 deletions
diff --git a/crates/shirabe-php-shim/src/lib.rs b/crates/shirabe-php-shim/src/lib.rs
index dd13b94..3f7e9e3 100644
--- a/crates/shirabe-php-shim/src/lib.rs
+++ b/crates/shirabe-php-shim/src/lib.rs
@@ -1079,6 +1079,18 @@ pub fn filter_var_with_options(
todo!()
}
+pub fn memory_get_usage() -> i64 {
+ todo!()
+}
+
+pub fn mb_check_encoding(value: &str, encoding: &str) -> bool {
+ todo!()
+}
+
+pub fn iconv(in_charset: &str, out_charset: &str, string: &str) -> Option<String> {
+ todo!()
+}
+
pub fn call_user_func_array(callback: &str, args: &PhpMixed) -> PhpMixed {
todo!()
}