diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-05-15 20:07:54 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-05-16 10:00:39 +0900 |
| commit | 0716a8d2496bbfd4a7e6de503fc7e336b0aee66f (patch) | |
| tree | bf75e9a258199d33824e40282561844c03775fc1 /crates/shirabe-php-shim | |
| parent | 4b4bacdbced5c4af5bfbb2b5a2615b1c3d73c038 (diff) | |
| download | php-shirabe-0716a8d2496bbfd4a7e6de503fc7e336b0aee66f.tar.gz php-shirabe-0716a8d2496bbfd4a7e6de503fc7e336b0aee66f.tar.zst php-shirabe-0716a8d2496bbfd4a7e6de503fc7e336b0aee66f.zip | |
feat(port): port JsonFormatter.php
Diffstat (limited to 'crates/shirabe-php-shim')
| -rw-r--r-- | crates/shirabe-php-shim/src/lib.rs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/crates/shirabe-php-shim/src/lib.rs b/crates/shirabe-php-shim/src/lib.rs index 56bfcc4..e85f665 100644 --- a/crates/shirabe-php-shim/src/lib.rs +++ b/crates/shirabe-php-shim/src/lib.rs @@ -390,6 +390,14 @@ pub fn class_exists(name: &str) -> bool { todo!() } +pub fn function_exists(name: &str) -> bool { + todo!() +} + +pub fn mb_convert_encoding(string: Vec<u8>, to_encoding: &str, from_encoding: &str) -> String { + todo!() +} + pub fn touch(path: &str) -> bool { todo!() } |
