diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-05-16 21:51:22 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-05-16 21:51:22 +0900 |
| commit | 3febb9507feb1fc96fd216ed149065735fe0b824 (patch) | |
| tree | 1635479d0db606d13e2ecc79db2f84170b262831 /crates/shirabe-php-shim/src/lib.rs | |
| parent | 84e959fc73512b4fd226d6ed186f0c62a70e68c0 (diff) | |
| download | php-shirabe-3febb9507feb1fc96fd216ed149065735fe0b824.tar.gz php-shirabe-3febb9507feb1fc96fd216ed149065735fe0b824.tar.zst php-shirabe-3febb9507feb1fc96fd216ed149065735fe0b824.zip | |
feat(port): port Config.php
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Diffstat (limited to 'crates/shirabe-php-shim/src/lib.rs')
| -rw-r--r-- | crates/shirabe-php-shim/src/lib.rs | 17 |
1 files changed, 17 insertions, 0 deletions
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<T: Clone>(array: &[T]) -> Vec<T> { + todo!() +} + +pub fn current(value: PhpMixed) -> PhpMixed { + todo!() +} + +pub fn key(value: PhpMixed) -> Option<String> { + todo!() +} + +pub fn reset<T: Clone>(array: &[T]) -> Option<T> { + todo!() +} + + pub const OPENSSL_ALGO_SHA384: i64 = 9; pub const PHP_VERSION_ID: i64 = 80100; |
