diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-05-16 14:42:08 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-05-16 14:42:08 +0900 |
| commit | a997321d92fb0dbd40febf92f605a94396f847a1 (patch) | |
| tree | b178f27cbe51efba7c7d6c27606303f6caac4dcc /crates/shirabe-php-shim/src | |
| parent | 5998aea69f6bd1edb1117ae1ed1e2ee9e579b169 (diff) | |
| download | php-shirabe-a997321d92fb0dbd40febf92f605a94396f847a1.tar.gz php-shirabe-a997321d92fb0dbd40febf92f605a94396f847a1.tar.zst php-shirabe-a997321d92fb0dbd40febf92f605a94396f847a1.zip | |
feat(port): port LibraryInstaller.php
Diffstat (limited to 'crates/shirabe-php-shim/src')
| -rw-r--r-- | crates/shirabe-php-shim/src/lib.rs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/crates/shirabe-php-shim/src/lib.rs b/crates/shirabe-php-shim/src/lib.rs index 78f3cc3..49b9a66 100644 --- a/crates/shirabe-php-shim/src/lib.rs +++ b/crates/shirabe-php-shim/src/lib.rs @@ -825,6 +825,22 @@ pub fn strcmp(s1: &str, s2: &str) -> i64 { todo!() } +pub fn rtrim(s: &str, chars: Option<&str>) -> String { + todo!() +} + +pub fn rmdir(dir: &str) -> bool { + todo!() +} + +pub fn is_link(path: &str) -> bool { + todo!() +} + +pub fn strpos(haystack: &str, needle: &str) -> Option<usize> { + todo!() +} + impl Phar { pub const SHA512: i64 = 16; |
