diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-05-16 21:28:10 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-05-16 21:28:10 +0900 |
| commit | d542f929418767d8ffaec717af9e56173b3f4125 (patch) | |
| tree | 78251f88ac8076aa493cb728b8b1001def31190e /crates/shirabe-php-shim/src/lib.rs | |
| parent | 285e4b9a3785590116fbe4fc7326ae884042da8a (diff) | |
| download | php-shirabe-d542f929418767d8ffaec717af9e56173b3f4125.tar.gz php-shirabe-d542f929418767d8ffaec717af9e56173b3f4125.tar.zst php-shirabe-d542f929418767d8ffaec717af9e56173b3f4125.zip | |
feat(port): port Perforce.php
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Diffstat (limited to 'crates/shirabe-php-shim/src/lib.rs')
| -rw-r--r-- | crates/shirabe-php-shim/src/lib.rs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/crates/shirabe-php-shim/src/lib.rs b/crates/shirabe-php-shim/src/lib.rs index af8db75..f626ab9 100644 --- a/crates/shirabe-php-shim/src/lib.rs +++ b/crates/shirabe-php-shim/src/lib.rs @@ -781,6 +781,22 @@ pub fn ord(c: &str) -> i64 { todo!() } +pub fn gethostname() -> String { + todo!() +} + +pub fn feof(stream: PhpMixed) -> bool { + todo!() +} + +pub fn str_replace_array( + search: &[String], + replace: &[String], + subject: &str, +) -> String { + todo!() +} + pub fn array_intersect_key(array1: &IndexMap<String, Box<PhpMixed>>, array2: &IndexMap<String, Box<PhpMixed>>) -> IndexMap<String, Box<PhpMixed>> { todo!() } |
