diff options
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!() } |
