diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-05-16 20:02:46 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-05-16 20:02:46 +0900 |
| commit | 0cfb074ba0e02a4a451d5dba1d6546f3c11eb35b (patch) | |
| tree | 2a69c996eaec5d04c9deb8199f9f88a9bf727f86 /crates/shirabe-php-shim/src/lib.rs | |
| parent | 51e97c79cc117f739835dfe124f017d97b0f2c30 (diff) | |
| download | php-shirabe-0cfb074ba0e02a4a451d5dba1d6546f3c11eb35b.tar.gz php-shirabe-0cfb074ba0e02a4a451d5dba1d6546f3c11eb35b.tar.zst php-shirabe-0cfb074ba0e02a4a451d5dba1d6546f3c11eb35b.zip | |
feat(port): port ArrayLoader.php
Diffstat (limited to 'crates/shirabe-php-shim/src/lib.rs')
| -rw-r--r-- | crates/shirabe-php-shim/src/lib.rs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/crates/shirabe-php-shim/src/lib.rs b/crates/shirabe-php-shim/src/lib.rs index 99ab4f0..b4a9a74 100644 --- a/crates/shirabe-php-shim/src/lib.rs +++ b/crates/shirabe-php-shim/src/lib.rs @@ -870,6 +870,18 @@ pub fn str_starts_with(haystack: &str, needle: &str) -> bool { pub const DATE_ATOM: &str = "Y-m-d\\TH:i:sP"; +pub fn ucfirst(s: &str) -> String { + todo!() +} + +pub fn is_scalar(value: &PhpMixed) -> bool { + todo!() +} + +pub fn strval(value: &PhpMixed) -> String { + todo!() +} + pub fn usleep(microseconds: u64) { todo!() } |
