aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe-php-shim
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe-php-shim')
-rw-r--r--crates/shirabe-php-shim/src/lib.rs17
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;