From 3febb9507feb1fc96fd216ed149065735fe0b824 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sat, 16 May 2026 21:51:22 +0900 Subject: feat(port): port Config.php Co-Authored-By: Claude Opus 4.7 (1M context) --- crates/shirabe-php-shim/src/lib.rs | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'crates/shirabe-php-shim/src/lib.rs') diff --git a/crates/shirabe-php-shim/src/lib.rs b/crates/shirabe-php-shim/src/lib.rs index 5797450..d89c1fa 100644 --- a/crates/shirabe-php-shim/src/lib.rs +++ b/crates/shirabe-php-shim/src/lib.rs @@ -881,6 +881,23 @@ pub fn unlink_silent(path: &str) -> bool { todo!() } +pub fn array_unique(array: &[T]) -> Vec { + todo!() +} + +pub fn current(value: PhpMixed) -> PhpMixed { + todo!() +} + +pub fn key(value: PhpMixed) -> Option { + todo!() +} + +pub fn reset(array: &[T]) -> Option { + todo!() +} + + pub const OPENSSL_ALGO_SHA384: i64 = 9; pub const PHP_VERSION_ID: i64 = 80100; -- cgit v1.3.1