diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-05-15 23:27:03 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-05-16 10:00:40 +0900 |
| commit | 35df88af4fe7930c52ecd6c54683d71d823a5e7f (patch) | |
| tree | 9052843de4806668e200296004dd64c0360e632e /crates/shirabe-php-shim/src/lib.rs | |
| parent | d05d73dd8039b2858c5f715eec2d28c58b2a33d4 (diff) | |
| download | php-shirabe-35df88af4fe7930c52ecd6c54683d71d823a5e7f.tar.gz php-shirabe-35df88af4fe7930c52ecd6c54683d71d823a5e7f.tar.zst php-shirabe-35df88af4fe7930c52ecd6c54683d71d823a5e7f.zip | |
feat(port): port ExecCommand.php
Diffstat (limited to 'crates/shirabe-php-shim/src/lib.rs')
| -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 ffd6edf..e991f9c 100644 --- a/crates/shirabe-php-shim/src/lib.rs +++ b/crates/shirabe-php-shim/src/lib.rs @@ -575,6 +575,22 @@ pub fn bzcompress(data: &[u8]) -> Option<Vec<u8>> { todo!() } +pub fn getcwd() -> Option<String> { + todo!() +} + +pub fn chdir(path: &str) -> bool { + todo!() +} + +pub fn glob(pattern: &str) -> Vec<String> { + todo!() +} + +pub fn basename(path: &str) -> String { + todo!() +} + pub struct FilesystemIterator; impl FilesystemIterator { |
