diff options
Diffstat (limited to 'crates/shirabe-php-shim/src/lib.rs')
| -rw-r--r-- | crates/shirabe-php-shim/src/lib.rs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/crates/shirabe-php-shim/src/lib.rs b/crates/shirabe-php-shim/src/lib.rs index a9d0e3a..78f3cc3 100644 --- a/crates/shirabe-php-shim/src/lib.rs +++ b/crates/shirabe-php-shim/src/lib.rs @@ -480,6 +480,10 @@ pub fn rawurlencode(s: &str) -> String { todo!() } +pub fn urlencode(s: &str) -> String { + todo!() +} + pub fn base64_encode(data: &str) -> String { todo!() } @@ -762,6 +766,9 @@ pub const PHP_MAJOR_VERSION: i64 = 8; pub const PHP_MINOR_VERSION: i64 = 1; pub const PHP_RELEASE_VERSION: i64 = 0; +pub const PHP_WINDOWS_VERSION_MAJOR: i64 = 0; +pub const PHP_WINDOWS_VERSION_MINOR: i64 = 0; + pub const GLOB_MARK: i64 = 8; pub const GLOB_ONLYDIR: i64 = 1024; pub const GLOB_BRACE: i64 = 4096; |
