From 0716a8d2496bbfd4a7e6de503fc7e336b0aee66f Mon Sep 17 00:00:00 2001 From: nsfisis Date: Fri, 15 May 2026 20:07:54 +0900 Subject: feat(port): port JsonFormatter.php --- crates/shirabe-php-shim/src/lib.rs | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'crates/shirabe-php-shim') 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, to_encoding: &str, from_encoding: &str) -> String { + todo!() +} + pub fn touch(path: &str) -> bool { todo!() } -- cgit v1.3.1