aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe-php-shim
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-05-16 00:31:22 +0900
committernsfisis <nsfisis@gmail.com>2026-05-16 10:00:40 +0900
commit3f08ac80557400be0352fc62b146bb9a4f95c575 (patch)
tree9d91e72e51c29f261b940188657124c3599a867d /crates/shirabe-php-shim
parente02fa95fff3560eed59ec488a02d355529e0e4c6 (diff)
downloadphp-shirabe-3f08ac80557400be0352fc62b146bb9a4f95c575.tar.gz
php-shirabe-3f08ac80557400be0352fc62b146bb9a4f95c575.tar.zst
php-shirabe-3f08ac80557400be0352fc62b146bb9a4f95c575.zip
feat(port): port ConfigValidator.php
Diffstat (limited to 'crates/shirabe-php-shim')
-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!()
+}