aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe-php-shim
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-05-16 21:41:15 +0900
committernsfisis <nsfisis@gmail.com>2026-05-16 22:17:14 +0900
commit86125bc5e9c62e411b4d5bad79ed40b42e0beb96 (patch)
treef6a101de3181ae4b993e948ca2926f6798df6783 /crates/shirabe-php-shim
parent0f97875904b461900a4ad92a61e743bf7afe4929 (diff)
downloadphp-shirabe-86125bc5e9c62e411b4d5bad79ed40b42e0beb96.tar.gz
php-shirabe-86125bc5e9c62e411b4d5bad79ed40b42e0beb96.tar.zst
php-shirabe-86125bc5e9c62e411b4d5bad79ed40b42e0beb96.zip
feat(port): port PlatformRepository.php
Diffstat (limited to 'crates/shirabe-php-shim')
-rw-r--r--crates/shirabe-php-shim/src/lib.rs8
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 35db21d..60f532d 100644
--- a/crates/shirabe-php-shim/src/lib.rs
+++ b/crates/shirabe-php-shim/src/lib.rs
@@ -250,6 +250,14 @@ pub fn count_mixed(value: &PhpMixed) -> i64 {
todo!()
}
+pub fn array_slice(value: &PhpMixed, offset: i64, length: Option<i64>) -> PhpMixed {
+ todo!()
+}
+
+pub fn array_slice_strs(value: &[String], offset: i64, length: Option<i64>) -> Vec<String> {
+ todo!()
+}
+
pub fn empty(value: &PhpMixed) -> bool {
todo!()
}