aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe-php-shim
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe-php-shim')
-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 e42ac9a..ca2087d 100644
--- a/crates/shirabe-php-shim/src/lib.rs
+++ b/crates/shirabe-php-shim/src/lib.rs
@@ -1041,6 +1041,18 @@ pub fn array_key_exists<V>(key: &str, array: &IndexMap<String, V>) -> bool {
todo!()
}
+pub fn fgets(handle: PhpMixed) -> Option<String> {
+ todo!()
+}
+
+pub fn umask() -> u32 {
+ todo!()
+}
+
+pub fn basename_with_suffix(path: &str, suffix: &str) -> String {
+ todo!()
+}
+
pub fn call_user_func_array(callback: &str, args: &PhpMixed) -> PhpMixed {
todo!()
}