%PDF- %PDF-
Direktori : /www/varak.net/nextcloud.varak.net/apps_old/apps/bookmarks/vendor/rowbot/url/src/Component/ |
Current File : /www/varak.net/nextcloud.varak.net/apps_old/apps/bookmarks/vendor/rowbot/url/src/Component/Path.php |
<?php declare(strict_types=1); namespace Rowbot\URL\Component; use Rowbot\URL\String\AbstractStringBuffer; use Rowbot\URL\String\CodePoint; use function strlen; use function strpbrk; /** * Represents a component in a URL's path as an ASCII string. */ class Path extends AbstractStringBuffer { /** * @see https://url.spec.whatwg.org/#normalized-windows-drive-letter */ public function isNormalizedWindowsDriveLetter(): bool { return strlen($this->string) === 2 && strpbrk($this->string[0], CodePoint::ASCII_ALPHA_MASK) === $this->string[0] && $this->string[1] === ':'; } }