diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-05-16 15:22:04 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-05-16 15:22:04 +0900 |
| commit | f4e197d62e6daad4000cdebf3451219fe429c0fb (patch) | |
| tree | df4a1d527ca9e6818edec3d57b57f872e9208c20 /crates/shirabe-php-shim/src/lib.rs | |
| parent | dbf09727faecce412c2d60140bd3d497cbe7c53f (diff) | |
| download | php-shirabe-f4e197d62e6daad4000cdebf3451219fe429c0fb.tar.gz php-shirabe-f4e197d62e6daad4000cdebf3451219fe429c0fb.tar.zst php-shirabe-f4e197d62e6daad4000cdebf3451219fe429c0fb.zip | |
feat(port): port ConsoleIO.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 dd13b94..3f7e9e3 100644 --- a/crates/shirabe-php-shim/src/lib.rs +++ b/crates/shirabe-php-shim/src/lib.rs @@ -1079,6 +1079,18 @@ pub fn filter_var_with_options( todo!() } +pub fn memory_get_usage() -> i64 { + todo!() +} + +pub fn mb_check_encoding(value: &str, encoding: &str) -> bool { + todo!() +} + +pub fn iconv(in_charset: &str, out_charset: &str, string: &str) -> Option<String> { + todo!() +} + pub fn call_user_func_array(callback: &str, args: &PhpMixed) -> PhpMixed { todo!() } |
