From d542f929418767d8ffaec717af9e56173b3f4125 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sat, 16 May 2026 21:28:10 +0900 Subject: feat(port): port Perforce.php Co-Authored-By: Claude Opus 4.7 (1M context) --- crates/shirabe-php-shim/src/lib.rs | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'crates/shirabe-php-shim/src/lib.rs') 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>, array2: &IndexMap>) -> IndexMap> { todo!() } -- cgit v1.3.1