diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-05-16 21:32:01 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-05-16 21:32:01 +0900 |
| commit | 593a36ac6a4987cd7fe043ef7c7cd9658819bff6 (patch) | |
| tree | a225470ad77cc0a04982ffc90cbac2a53fa646f1 /crates/shirabe-php-shim | |
| parent | d542f929418767d8ffaec717af9e56173b3f4125 (diff) | |
| download | php-shirabe-593a36ac6a4987cd7fe043ef7c7cd9658819bff6.tar.gz php-shirabe-593a36ac6a4987cd7fe043ef7c7cd9658819bff6.tar.zst php-shirabe-593a36ac6a4987cd7fe043ef7c7cd9658819bff6.zip | |
feat(port): port InitCommand.php
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Diffstat (limited to 'crates/shirabe-php-shim')
| -rw-r--r-- | crates/shirabe-php-shim/src/lib.rs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/crates/shirabe-php-shim/src/lib.rs b/crates/shirabe-php-shim/src/lib.rs index f626ab9..ea417ee 100644 --- a/crates/shirabe-php-shim/src/lib.rs +++ b/crates/shirabe-php-shim/src/lib.rs @@ -797,6 +797,21 @@ pub fn str_replace_array( todo!() } +pub fn file(filename: &str, flags: i64) -> Option<Vec<String>> { + todo!() +} + +pub fn ucwords(s: &str) -> String { + todo!() +} + +pub fn get_current_user() -> String { + todo!() +} + +pub const FILE_IGNORE_NEW_LINES: i64 = 2; +pub const FILTER_VALIDATE_EMAIL: i64 = 274; + pub fn array_intersect_key(array1: &IndexMap<String, Box<PhpMixed>>, array2: &IndexMap<String, Box<PhpMixed>>) -> IndexMap<String, Box<PhpMixed>> { todo!() } |
