diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-05-15 23:50:17 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-05-16 10:00:40 +0900 |
| commit | 12bbfc80c4e42ebd82e26c04c49d7d355ea086d6 (patch) | |
| tree | c5cfe152e363c41dc3ce3aed280c8b02cd947793 /crates/shirabe-php-shim/src | |
| parent | d88b61a92da76703e8103a34386e346481cce53d (diff) | |
| download | php-shirabe-12bbfc80c4e42ebd82e26c04c49d7d355ea086d6.tar.gz php-shirabe-12bbfc80c4e42ebd82e26c04c49d7d355ea086d6.tar.zst php-shirabe-12bbfc80c4e42ebd82e26c04c49d7d355ea086d6.zip | |
feat(port): port RepositoryFactory.php
Diffstat (limited to 'crates/shirabe-php-shim/src')
| -rw-r--r-- | crates/shirabe-php-shim/src/lib.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/crates/shirabe-php-shim/src/lib.rs b/crates/shirabe-php-shim/src/lib.rs index d2052a3..95dbd4d 100644 --- a/crates/shirabe-php-shim/src/lib.rs +++ b/crates/shirabe-php-shim/src/lib.rs @@ -230,6 +230,9 @@ 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 PATHINFO_EXTENSION: i64 = 4; +pub const PATHINFO_DIRNAME: i64 = 1; +pub const PATHINFO_BASENAME: i64 = 2; pub const DIRECTORY_SEPARATOR: &str = "/"; pub const HHVM_VERSION: Option<&str> = None; |
