diff options
Diffstat (limited to 'crates/shirabe-php-shim/src/lib.rs')
| -rw-r--r-- | crates/shirabe-php-shim/src/lib.rs | 8 |
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!() } |
