diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-05-15 02:45:20 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-05-15 19:51:17 +0900 |
| commit | 16e1ab51c19267a636c8296025c44bd062eaaed7 (patch) | |
| tree | 8255f88348ea799eaae32e6d80b73c708acdc951 /crates/shirabe-php-shim | |
| parent | c7abf0405f901d567b371e016c4ee5b1751d4d6d (diff) | |
| download | php-shirabe-16e1ab51c19267a636c8296025c44bd062eaaed7.tar.gz php-shirabe-16e1ab51c19267a636c8296025c44bd062eaaed7.tar.zst php-shirabe-16e1ab51c19267a636c8296025c44bd062eaaed7.zip | |
feat(port): port Url.php
Diffstat (limited to 'crates/shirabe-php-shim')
| -rw-r--r-- | crates/shirabe-php-shim/src/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/crates/shirabe-php-shim/src/lib.rs b/crates/shirabe-php-shim/src/lib.rs index f5b5d30..e90b33d 100644 --- a/crates/shirabe-php-shim/src/lib.rs +++ b/crates/shirabe-php-shim/src/lib.rs @@ -226,6 +226,8 @@ pub const E_USER_NOTICE: i64 = 1024; pub const E_DEPRECATED: i64 = 8192; pub const E_USER_DEPRECATED: i64 = 16384; +pub const PHP_URL_HOST: i64 = 1; +pub const PHP_URL_PORT: i64 = 2; pub const PHP_URL_PATH: i64 = 5; pub const PATHINFO_FILENAME: i64 = 64; pub const DIRECTORY_SEPARATOR: &str = "/"; |
