diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-05-16 15:06:20 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-05-16 15:06:20 +0900 |
| commit | 4d691b703aefa8348c17f850d93390794b44a521 (patch) | |
| tree | d55245dd9e31649a53d1e9bd728f1d6bc21dc768 /crates/shirabe-php-shim | |
| parent | 4ae61114b588abd7678794a870e5265f9821d75b (diff) | |
| download | php-shirabe-4d691b703aefa8348c17f850d93390794b44a521.tar.gz php-shirabe-4d691b703aefa8348c17f850d93390794b44a521.tar.zst php-shirabe-4d691b703aefa8348c17f850d93390794b44a521.zip | |
feat(port): port Cache.php
Diffstat (limited to 'crates/shirabe-php-shim')
| -rw-r--r-- | crates/shirabe-php-shim/src/lib.rs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/crates/shirabe-php-shim/src/lib.rs b/crates/shirabe-php-shim/src/lib.rs index c5d5fc4..5a937ad 100644 --- a/crates/shirabe-php-shim/src/lib.rs +++ b/crates/shirabe-php-shim/src/lib.rs @@ -999,6 +999,26 @@ pub fn array_keys<V>(array: &IndexMap<String, V>) -> Vec<String> { todo!() } +pub fn mkdir(pathname: &str, mode: u32, recursive: bool) -> bool { + todo!() +} + +pub fn rename(old_name: &str, new_name: &str) -> bool { + todo!() +} + +pub fn clearstatcache() { + todo!() +} + +pub fn disk_free_space(directory: &str) -> Option<f64> { + todo!() +} + +pub fn filemtime(filename: &str) -> Option<i64> { + todo!() +} + pub fn array_map<T, U, F>(callback: F, array: &[T]) -> Vec<U> where F: Fn(&T) -> U, |
