diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-05-16 15:17:43 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-05-16 15:17:43 +0900 |
| commit | 3e03d3c3a8a35010f171795ac63876ac6a616b2a (patch) | |
| tree | 117dddf37780bcfce797efe59749618c04882576 /crates/shirabe-php-shim/src/lib.rs | |
| parent | a116b3ecbb37e9320ec0a49e98a5082cc50edeaf (diff) | |
| download | php-shirabe-3e03d3c3a8a35010f171795ac63876ac6a616b2a.tar.gz php-shirabe-3e03d3c3a8a35010f171795ac63876ac6a616b2a.tar.zst php-shirabe-3e03d3c3a8a35010f171795ac63876ac6a616b2a.zip | |
feat(port): port BinaryInstaller.php
Diffstat (limited to 'crates/shirabe-php-shim/src/lib.rs')
| -rw-r--r-- | crates/shirabe-php-shim/src/lib.rs | 12 |
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!() } |
