aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe-php-shim/src
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe-php-shim/src')
-rw-r--r--crates/shirabe-php-shim/src/lib.rs12
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 d89aed5..6a13fa1 100644
--- a/crates/shirabe-php-shim/src/lib.rs
+++ b/crates/shirabe-php-shim/src/lib.rs
@@ -667,3 +667,15 @@ pub fn random_bytes(length: usize) -> Vec<u8> {
pub fn is_dir(path: &str) -> bool {
todo!()
}
+
+pub fn file_get_contents(path: &str) -> Option<String> {
+ todo!()
+}
+
+pub fn strtolower(s: &str) -> String {
+ todo!()
+}
+
+pub fn array_intersect_key(array1: &IndexMap<String, Box<PhpMixed>>, array2: &IndexMap<String, Box<PhpMixed>>) -> IndexMap<String, Box<PhpMixed>> {
+ todo!()
+}