{"id":13912657,"url":"https://github.com/esperecyan/url","last_synced_at":"2026-01-11T16:49:42.501Z","repository":{"id":34007663,"uuid":"37763270","full_name":"esperecyan/url","owner":"esperecyan","description":"Makes the algorithms and APIs defined by URL Standard (replaces RFC 3986 and RFC 3987) available on PHP. / URL Standard (RFC 3986、RFC 3987 を置き換える Web 標準仕様) で定義されているアルゴリズム、および API を PHP から利用できるようにします。","archived":false,"fork":false,"pushed_at":"2023-02-15T04:52:50.000Z","size":971,"stargazers_count":15,"open_issues_count":2,"forks_count":2,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-05-01T14:34:37.796Z","etag":null,"topics":["php","polyfill","url","url-standard","web-standards"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/esperecyan.png","metadata":{"files":{"readme":"README.ja.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2015-06-20T08:28:27.000Z","updated_at":"2023-03-01T10:24:06.000Z","dependencies_parsed_at":"2024-01-14T08:47:38.404Z","dependency_job_id":"f5a5d936-61a7-4381-be93-5e620b0606f5","html_url":"https://github.com/esperecyan/url","commit_stats":{"total_commits":102,"total_committers":2,"mean_commits":51.0,"dds":"0.12745098039215685","last_synced_commit":"1ad5ae401a2b7a91053ca9c79da681fbffdfb57f"},"previous_names":[],"tags_count":30,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/esperecyan%2Furl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/esperecyan%2Furl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/esperecyan%2Furl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/esperecyan%2Furl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/esperecyan","download_url":"https://codeload.github.com/esperecyan/url/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":226409829,"owners_count":17620715,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["php","polyfill","url","url-standard","web-standards"],"created_at":"2024-08-07T01:01:38.526Z","updated_at":"2026-01-11T16:49:42.468Z","avatar_url":"https://github.com/esperecyan.png","language":"PHP","funding_links":[],"categories":["php"],"sub_categories":[],"readme":"[English](README.md) / 日本語\n\nURL Standard\n============\n[URL Standard]で定義されているアルゴリズム、および API を PHP から利用できるようにします。\n\n[URL Standard]: https://triple-underscore.github.io/URL-ja.html \"URL 標準は、 URL, ドメイン, IP アドレス, application/x-www-form-urlencoded 形式, および それらの API を定義する。\"\n\n概要\n----\nURL Standard は、従来の標準である [RFC 3986]、[RFC 3987] を置き換える Web 標準仕様です。\n\nこの仕様では[API]として、[URLインターフェース]、および[URLSearchPramsインターフェース]を定義しています。\n当ライブラリでは、[URLインターフェース]を[esperecyan\\url\\URLクラス]として、[URLSearchPramsインターフェース]を[esperecyan\\url\\URLSearchParamsクラス]として使えるようにしました。\n各インターフェースの解説としては、MDNのドキュメントがわかりやすいかもしれません https://developer.mozilla.org/docs/Web/API/URL https://developer.mozilla.org/docs/Web/API/URLSearchParams 。\n\n当ライブラリは、URL Standard で定義されているアルゴリズムも実装しています。詳細は[アルゴリズムなどの対応表]をご覧ください。\n\n[RFC 3986]: http://www.eonet.ne.jp/~h-hash/rfc_ja/rfc3986.ja.html \"Uniform Resource Identifier (URI) は、抽象的あるいは物理的なリソースを識別するための簡潔な文字列である。この仕様書は、一般的な URI の構文と相対的形式である URI 参照を解決するための手順を定義し、更にインターネット上での URI の使用のついての指針やセキュリティについての考察を示す。\"\n[RFC 3987]: https://tools.ietf.org/html/rfc3987 \"This document defines a new protocol element, the Internationalized Resource Identifier (IRI), as a complement to the Uniform Resource Identifier (URI).\"\n[API]: https://triple-underscore.github.io/URL-ja.html#api \"URL 標準は、URL の既存の JavaScript API における全部的な詳細を定義し、より扱い易いものになる様に機能を強化する。\"\n[URLインターフェース]: https://triple-underscore.github.io/URL-ja.html#URL \"URL 標準は、HTML 要素を通さずに URL を操作できるようにする（ JavaScript worker 環境でも使えるようにする）ため， URL オブジェクトを新たに追加する。\"\n[URLSearchPramsインターフェース]: https://triple-underscore.github.io/URL-ja.html#interface-urlsearchparams\n[esperecyan\\url\\URLクラス]: https://esperecyan.github.io/url/class-esperecyan.url.URL\n[esperecyan\\url\\URLSearchParamsクラス]: https://esperecyan.github.io/url/class-esperecyan.url.URLSearchParams\n[アルゴリズムなどの対応表]: #アルゴリズムなどの対応表\n\n例\n---\n```php\n\u003c?php\nrequire_once 'vendor/autoload.php';\n\nuse esperecyan\\url\\URL;\n\n$url = new URL('http://url.test/foobar?name=value');\nvar_dump($url-\u003eprotocol, $url-\u003epathname, $url-\u003esearchParams-\u003eget('name'));\n```\n\n上の例の出力は以下となります。\n\n```plain\nstring(5) \"http:\"\nstring(7) \"/foobar\"\nstring(5) \"value\"\n```\n\n要件\n----\n* PHP 5.4、または7.2以降 **(PHP 5.4 および 7.2 は非推奨)**\n\t+ SPL Types PECL ライブラリには非対応\n\nインストール\n-----------\n```sh\ncomposer require esperecyan/url\n```\n\nComposer のインストール方法については、[Composerドキュメント]をご覧ください。\n\n[Composerドキュメント]: https://kohkimakimoto.github.io/getcomposer.org_doc_jp/doc/00-intro \"ComposerはPHPの依存管理ツールです。 Composerはあなたのプロジェクトが必要とする依存ライブラリを定義できるようにして、インストールを行います。\"\n\n貢献\n----\n1. Fork します ( https://github.com/esperecyan/url )\n2. branch を作成します `git checkout -b my-new-feature`\n3. 変更を commit します `git commit -am 'Add some feature'`\n4. branch に push します `git push origin my-new-feature`\n5. Pull Request を作成します\n\nもしくは\n\nIssue を作成します\n\nREADME や Doc コメントの英文の間違い、またテストの不備などを見つけたら、Pull Request や Issue などからご連絡ください。\nREADME の翻訳も歓迎いたします。\n\n謝辞\n----\n[URLencodingクラス]の実装に当たり、[コードポイントから UTF-8 の文字を生成する - Qiita]、および[UTF-8 の文字からコードポイントを求める - Qiita]のコードを利用させていただきました。\n\nライブラリの作成に当たり、[URL Standard （日本語訳）]を参考にさせていただきました。\n\nREADMEの英訳をハダーさんに協力していただきました。\n\n[URLencodingクラス]: src/lib/URLencoding.php\n[コードポイントから UTF-8 の文字を生成する - Qiita]: http://qiita.com/masakielastic/items/68f81e1b7d153ee5cc81 \"バリデーションの際に想定外の文字が通っていないか調べるには Unicode で定義されるすべての文字を試すことが必要です。UTF-8 の場合、コードポイントの範囲は U+0000 から U+7FFF、U+E000 から U+10FFFF までです。\"\n[UTF-8 の文字からコードポイントを求める - Qiita]: http://qiita.com/masakielastic/items/5696cf90738c1438f10d \"文字の Unicode プロパティやエンコーディングに関する情報を検索で調べる際にコードポイントが必要になることがあります。PHP 5.5 で intl 拡張モジュールに IntlCodePointBreakIterator が追加され、コードポイントを求めやすくなりました。\"\n[URL Standard （日本語訳）]: https://triple-underscore.github.io/URL-ja.html \"このページ は、 WHATWG による，副題の日付 時点の URL Standard を日本語に翻訳したものです。 この翻訳の正確性は保証されません。 この仕様の公式な文書は英語版であり、この日本語訳は公式のものではありません。\"\n\nセマンティック バージョニング\n---------------------------\n当ライブラリは[セマンティック バージョニング]を採用しています。\nパブリックAPIは、[当ライブラリのドキュメント]に記載されているクラス・メソッド・定数・プロパティです。\n\n[セマンティック バージョニング]: http://semver.org/lang/ja/\n[当ライブラリのドキュメント]: https://esperecyan.github.io/webidl/\n\nライセンス\n---------\n当ライブラリのライセンスは [Mozilla Public License Version 2.0] \\(MPL-2.0) です。\n\n[Mozilla Public License Version 2.0]: https://www.mozilla.org/MPL/2.0/\n\nアルゴリズムなどの対応表\n---------------------\n| [1. 基盤]                   |                                                                    |\n|-----------------------------|--------------------------------------------------------------------|\n| [パーセント符号化]          | [esperecyan\\url\\lib\\Infrastructure::percentEncode()]               |\n| [パーセント復号]            | [esperecyan\\url\\lib\\Infrastructure::percentDecode()]               |\n| [C0 制御文字 %‐符号化集合] | [esperecyan\\url\\lib\\Infrastructure::C0_CONTROL_PERCENT_ENCODE_SET] |\n| [パス %‐符号化集合]        | [esperecyan\\url\\lib\\Infrastructure::PATH_PERCENT_ENCODE_SET]       |\n| [ユーザ情報 %‐符号化集合]  | [esperecyan\\url\\lib\\Infrastructure::USERINFO_PERCENT_ENCODE_SET]   |\n| [utf-8 パーセント符号化]    | [esperecyan\\url\\lib\\Infrastructure::utf8PercentEncode()]           |\n\n| [3. ホスト（ドメインと IP アドレス）]        |                                                                 |\n|----------------------------------------------|-----------------------------------------------------------------|\n| [ドメイン]\u003cbr\u003e[不透明なホスト]\u003cbr\u003e[空ホスト] | 妥当な utf-8 の文字列                                           |\n| [IPv4 アドレス]                              | 0〜0xFFFFFFFFの整数、または浮動小数点数                         |\n| [IPv6 アドレス]                              | 0〜0xFFFFの整数を要素に持つ長さが8の配列                        |\n| [禁止ホスト符号位置]                         | [esperecyan\\url\\lib\\HostProcessing::FORBIDDEN_HOST_CODE_POINTS] |\n| [ドメインから ASCII へ変換]                  | [esperecyan\\url\\lib\\HostProcessing::domainToASCII()]            |\n| [ドメインから Unicode へ変換]                | [esperecyan\\url\\lib\\HostProcessing::domainToUnicode()]          |\n| [妥当なドメイン]                             | [esperecyan\\url\\lib\\HostProcessing::isValidDomain()]            |\n| [ホスト構文解析器]                           | [esperecyan\\url\\lib\\HostProcessing::parseHost()]                |\n| [IPv4 番号構文解析器]                        | [esperecyan\\url\\lib\\HostProcessing::parseIPv4Number()]          |\n| [IPv4 構文解析器]                            | [esperecyan\\url\\lib\\HostProcessing::parseIPv4()]                |\n| [IPv6 構文解析器]                            | [esperecyan\\url\\lib\\HostProcessing::parseIPv6()]                |\n| [不透明なホスト構文解析器]                   | [esperecyan\\url\\lib\\HostProcessing::parseOpaqueHost()]          |\n| [ホスト直列化器]                             | [esperecyan\\url\\lib\\HostProcessing::serializeHost()]            |\n| [IPv4 直列化器]                              | [esperecyan\\url\\lib\\HostProcessing::serializeIPv4()]            |\n| [IPv6 直列化器]                              | [esperecyan\\url\\lib\\HostProcessing::serializeIPv6()]            |\n\n| [4. URL]                                   |                                                                |\n|--------------------------------------------|----------------------------------------------------------------|\n| [URL]                                      | [esperecyan\\url\\lib\\URLクラス]のインスタンス                   |\n| [スキーム]                                 | [esperecyan\\url\\lib\\URL-\u003escheme]                               |\n| [ユーザ名]                                 | [esperecyan\\url\\lib\\URL-\u003eusername]                             |\n| [パスワード]                               | [esperecyan\\url\\lib\\URL-\u003epassword]                             |\n| [ホスト]                                   | [esperecyan\\url\\lib\\URL-\u003ehost]                                 |\n| [ポート]                                   | [esperecyan\\url\\lib\\URL-\u003eport]                                 |\n| [パス]                                     | [esperecyan\\url\\lib\\URL-\u003epath]                                 |\n| [クエリ]                                   | [esperecyan\\url\\lib\\URL-\u003equery]                                |\n| [素片]                                     | [esperecyan\\url\\lib\\URL-\u003efragment]                             |\n| [基底 URL 不可用 flag]                     | [esperecyan\\url\\lib\\URL-\u003ecannotBeABaseURLFlag]                 |\n| [オブジェクト]                             | [esperecyan\\url\\lib\\URL-\u003eobject]                               |\n| [特別スキーム]                             | [esperecyan\\url\\lib\\URL::$specialSchemes]                      |\n| [特別]                                     | [esperecyan\\url\\lib\\URL-\u003eisSpecial()]                          |\n| [資格証明情報を含む]                       | [esperecyan\\url\\lib\\URL-\u003eisIncludingCredentials()]             |\n| [ユーザ名 / パスワード / ポートを持てない] | [esperecyan\\url\\lib\\URL-\u003ecannotHaveUsernamePasswordPort()]     |\n| [Windows ドライブレター]                   | [esperecyan\\url\\lib\\URL::WINDOWS_DRIVE_LETTER]                 |\n| [正規化済み Windows ドライブレター]        | [esperecyan\\url\\lib\\URL::NORMALIZED_WINDOWS_DRIVE_LETTER]      |\n| [Windows ドライブレターから開始されている] | [esperecyan\\url\\lib\\URL::stringStartsWithWindowsDriveLetter()] |\n| [パスを短縮する]                           | [esperecyan\\url\\lib\\URL-\u003eshortenPath()]                        |\n| [単ドットパス区分]                         | [esperecyan\\url\\lib\\URL::SINGLE_DOT_PATH_SEGMENT]              |\n| [二重ドットパス区分]                       | [esperecyan\\url\\lib\\URL::DOUBLE_DOT_PATH_SEGMENT]              |\n| [URL 符号位置]                             | [esperecyan\\url\\lib\\URL::URL_CODE_POINTS]                      |\n| [URL 構文解析器]                           | [esperecyan\\url\\lib\\URL::parseURL()]                           |\n| [基本 URL 構文解析器]                      | [esperecyan\\url\\lib\\URL::parseBasicURL()]                      |\n| [ユーザ名を設定する]                       | [esperecyan\\url\\lib\\URL-\u003esetUsername()]                        |\n| [パスワードを設定する]                     | [esperecyan\\url\\lib\\URL-\u003esetPassword()]                        |\n| [URL 直列化器]                             | [esperecyan\\url\\lib\\URL-\u003eserializeURL()]                       |\n| [生成元]                                   | [esperecyan\\url\\lib\\URL-\u003egetOrigin()]                          |\n\n| [5. application/x-www-form-urlencoded]               |                                                             |\n|------------------------------------------------------|-------------------------------------------------------------|\n| [application/x-www-form-urlencoded 構文解析器]       | [esperecyan\\url\\lib\\URLencoding::parseURLencoded()]         |\n| [application/x-www-form-urlencoded バイト直列化器]   | [esperecyan\\url\\lib\\URLencoding::serializeURLencodedByte()] |\n| [application/x-www-form-urlencoded 直列化器]         | [esperecyan\\url\\lib\\URLencoding::serializeURLencoded()]     |\n| [application/x-www-form-urlencoded 文字列構文解析器] | [esperecyan\\url\\lib\\URLencoding::parseURLencodedString()]   |\n| ( 名, 値 ) の組, または [( 名, 値, 型 ) の組]        | 1つ目の要素に名、2つ目の要素に値、任意で3つ目の要素に型を持つ配列。値は文字列、または `name` キーからファイル名を取得できる配列 |\n\n[1. 基盤]: https://triple-underscore.github.io/URL-ja.html#terminology\n[パーセント符号化]: https://triple-underscore.github.io/URL-ja.html#percent-encode\n[パーセント復号]: https://triple-underscore.github.io/URL-ja.html#percent-decode\n[C0 制御文字 %‐符号化集合]: https://triple-underscore.github.io/URL-ja.html#c0-control-percent-encode-set\n[パス %‐符号化集合]: https://triple-underscore.github.io/URL-ja.html#path-percent-encode-set\n[ユーザ情報 %‐符号化集合]: https://triple-underscore.github.io/URL-ja.html#userinfo-percent-encode-set\n[utf-8 パーセント符号化]: https://triple-underscore.github.io/URL-ja.html#utf_8-percent-encode\n\n[3. ホスト（ドメインと IP アドレス）]: https://triple-underscore.github.io/URL-ja.html#hosts-(domains-and-ip-addresses)\n[ドメイン]: https://triple-underscore.github.io/URL-ja.html#concept-domain\n[不透明なホスト]: https://triple-underscore.github.io/URL-ja.html#opaque-host\n[空ホスト]: https://triple-underscore.github.io/URL-ja.html#empty-host\n[IPv4 アドレス]: https://triple-underscore.github.io/URL-ja.html#concept-ipv4\n[IPv6 アドレス]: https://triple-underscore.github.io/URL-ja.html#concept-ipv6\n[禁止ホスト符号位置]: https://triple-underscore.github.io/URL-ja.html#forbidden-host-code-point\n[ドメインから ASCII へ変換]: https://triple-underscore.github.io/URL-ja.html#concept-domain-to-ascii\n[ドメインから Unicode へ変換]: https://triple-underscore.github.io/URL-ja.html#concept-domain-to-unicode\n[妥当なドメイン]: https://triple-underscore.github.io/URL-ja.html#valid-domain\n[ホスト構文解析器]: https://triple-underscore.github.io/URL-ja.html#concept-host-parser\n[IPv4 番号構文解析器]: https://triple-underscore.github.io/URL-ja.html#ipv4-number-parser\n[IPv4 構文解析器]: https://triple-underscore.github.io/URL-ja.html#concept-ipv4-parser\n[IPv6 構文解析器]: https://triple-underscore.github.io/URL-ja.html#concept-ipv6-parser\n[不透明なホスト構文解析器]: https://triple-underscore.github.io/URL-ja.html#concept-opaque-host-parser\n[ホスト直列化器]: https://triple-underscore.github.io/URL-ja.html#concept-host-serializer\n[IPv4 直列化器]: https://triple-underscore.github.io/URL-ja.html#concept-ipv4-serializer\n[IPv6 直列化器]: https://triple-underscore.github.io/URL-ja.html#concept-ipv6-serializer\n\n[4. URL]: https://triple-underscore.github.io/URL-ja.html#urls\n[URL]: https://triple-underscore.github.io/URL-ja.html#concept-url\n[スキーム]: https://triple-underscore.github.io/URL-ja.html#concept-url-scheme\n[ユーザ名]: https://triple-underscore.github.io/URL-ja.html#concept-url-username\n[パスワード]: https://triple-underscore.github.io/URL-ja.html#concept-url-password\n[ホスト]: https://triple-underscore.github.io/URL-ja.html#concept-url-host\n[ポート]: https://triple-underscore.github.io/URL-ja.html#concept-url-port\n[パス]: https://triple-underscore.github.io/URL-ja.html#concept-url-path\n[クエリ]: https://triple-underscore.github.io/URL-ja.html#concept-url-query\n[素片]: https://triple-underscore.github.io/URL-ja.html#concept-url-fragment\n[基底 URL 不可用 flag]: https://triple-underscore.github.io/URL-ja.html#url-cannot-be-a-base-url-flag\n[オブジェクト]: https://triple-underscore.github.io/URL-ja.html#concept-url-object\n[特別スキーム]: https://triple-underscore.github.io/URL-ja.html#special-scheme\n[特別]: https://triple-underscore.github.io/URL-ja.html#is-special\n[資格証明情報を含む]: https://triple-underscore.github.io/URL-ja.html#include-credentials\n[ユーザ名 / パスワード / ポートを持てない]: https://triple-underscore.github.io/URL-ja.html#cannot-have-a-username-password-port\n[Windows ドライブレター]: https://triple-underscore.github.io/URL-ja.html#windows-drive-letter\n[正規化済み Windows ドライブレター]: https://triple-underscore.github.io/URL-ja.html#normalized-windows-drive-letter\n[Windows ドライブレターから開始されている]: https://triple-underscore.github.io/URL-ja.html#start-with-a-windows-drive-letter\n[パスを短縮する]: https://triple-underscore.github.io/URL-ja.html#shorten-a-urls-path\n[単ドットパス区分]: https://triple-underscore.github.io/URL-ja.html#syntax-url-path-segment-dot\n[二重ドットパス区分]: https://triple-underscore.github.io/URL-ja.html#syntax-url-path-segment-dotdot\n[URL 符号位置]: https://triple-underscore.github.io/URL-ja.html#url-code-points\n[URL 構文解析器]: https://triple-underscore.github.io/URL-ja.html#concept-url-parser\n[基本 URL 構文解析器]: https://triple-underscore.github.io/URL-ja.html#concept-basic-url-parser\n[ユーザ名を設定する]: https://triple-underscore.github.io/URL-ja.html#set-the-username\n[パスワードを設定する]: https://triple-underscore.github.io/URL-ja.html#set-the-password\n[URL 直列化器]: https://triple-underscore.github.io/URL-ja.html#concept-url-serializer\n[生成元]: https://triple-underscore.github.io/URL-ja.html#concept-url-origin\n\n[5. application/x-www-form-urlencoded]: https://triple-underscore.github.io/URL-ja.html#application/x-www-form-urlencoded\n[application/x-www-form-urlencoded 構文解析器]: https://triple-underscore.github.io/URL-ja.html#concept-urlencoded-parser\n[application/x-www-form-urlencoded バイト直列化器]: https://triple-underscore.github.io/URL-ja.html#concept-urlencoded-byte-serializer\n[application/x-www-form-urlencoded 直列化器]: https://triple-underscore.github.io/URL-ja.html#concept-urlencoded-serializer\n[application/x-www-form-urlencoded 文字列構文解析器]: https://triple-underscore.github.io/URL-ja.html#concept-urlencoded-string-parser\n[( 名, 値, 型 ) の組]: https://triple-underscore.github.io/HTML-input-ja.html#concept-input-type-file-selected\n\n[esperecyan\\url\\lib\\Infrastructure::percentEncode()]: https://esperecyan.github.io/url/class-esperecyan.url.lib.Infrastructure#_percentEncode\n[esperecyan\\url\\lib\\Infrastructure::percentDecode()]: https://esperecyan.github.io/url/class-esperecyan.url.lib.Infrastructure#_percentDecode\n[esperecyan\\url\\lib\\Infrastructure::C0_CONTROL_PERCENT_ENCODE_SET]: https://esperecyan.github.io/url/class-esperecyan.url.lib.Infrastructure#C0_CONTROL_PERCENT_ENCODE_SET\n[esperecyan\\url\\lib\\Infrastructure::PATH_PERCENT_ENCODE_SET]: https://esperecyan.github.io/url/class-esperecyan.url.lib.Infrastructure#PATH_PERCENT_ENCODE_SET\n[esperecyan\\url\\lib\\Infrastructure::USERINFO_PERCENT_ENCODE_SET]: https://esperecyan.github.io/url/class-esperecyan.url.lib.Infrastructure#USERINFO_PERCENT_ENCODE_SET\n[esperecyan\\url\\lib\\Infrastructure::utf8PercentEncode()]: https://esperecyan.github.io/url/class-esperecyan.url.lib.Infrastructure#_utf8PercentEncode\n[esperecyan\\url\\lib\\HostProcessing::domainToASCII()]: https://esperecyan.github.io/url/class-esperecyan.url.lib.HostProcessing#_domainToASCII\n[esperecyan\\url\\lib\\HostProcessing::FORBIDDEN_HOST_CODE_POINTS]: https://esperecyan.github.io/url/class-esperecyan.url.lib.HostProcessing#FORBIDDEN_HOST_CODE_POINTS\n[esperecyan\\url\\lib\\HostProcessing::domainToUnicode()]: https://esperecyan.github.io/url/class-esperecyan.url.lib.HostProcessing#_domainToUnicode\n[esperecyan\\url\\lib\\HostProcessing::isValidDomain()]: https://esperecyan.github.io/url/class-esperecyan.url.lib.HostProcessing#_isValidDomain\n[esperecyan\\url\\lib\\HostProcessing::parseHost()]: https://esperecyan.github.io/url/class-esperecyan.url.lib.HostProcessing#_parseHost\n[esperecyan\\url\\lib\\HostProcessing::parseIPv4Number()]: https://esperecyan.github.io/url/class-esperecyan.url.lib.HostProcessing#_parseIPv4Number\n[esperecyan\\url\\lib\\HostProcessing::parseIPv4()]: https://esperecyan.github.io/url/class-esperecyan.url.lib.HostProcessing#_parseIPv4\n[esperecyan\\url\\lib\\HostProcessing::parseIPv6()]: https://esperecyan.github.io/url/class-esperecyan.url.lib.HostProcessing#_parseIPv6\n[esperecyan\\url\\lib\\HostProcessing::parseOpaqueHost()]: https://esperecyan.github.io/url/class-esperecyan.url.lib.HostProcessing#_parseOpaqueHost\n[esperecyan\\url\\lib\\HostProcessing::serializeHost()]: https://esperecyan.github.io/url/class-esperecyan.url.lib.HostProcessing#_serializeHost\n[esperecyan\\url\\lib\\HostProcessing::serializeIPv4()]: https://esperecyan.github.io/url/class-esperecyan.url.lib.HostProcessing#_serializeIPv4\n[esperecyan\\url\\lib\\HostProcessing::serializeIPv6()]: https://esperecyan.github.io/url/class-esperecyan.url.lib.HostProcessing#_serializeIPv6\n[esperecyan\\url\\lib\\URLクラス]: https://esperecyan.github.io/url/class-esperecyan.url.lib.URL\n[esperecyan\\url\\lib\\URL-\u003escheme]: https://esperecyan.github.io/url/class-esperecyan.url.lib.URL#$scheme\n[esperecyan\\url\\lib\\URL-\u003eschemeData]: https://esperecyan.github.io/url/class-esperecyan.url.lib.URL#$schemeData\n[esperecyan\\url\\lib\\URL-\u003eusername]: https://esperecyan.github.io/url/class-esperecyan.url.lib.URL#$username\n[esperecyan\\url\\lib\\URL-\u003epassword]: https://esperecyan.github.io/url/class-esperecyan.url.lib.URL#$password\n[esperecyan\\url\\lib\\URL-\u003ehost]: https://esperecyan.github.io/url/class-esperecyan.url.lib.URL#$host\n[esperecyan\\url\\lib\\URL-\u003eport]: https://esperecyan.github.io/url/class-esperecyan.url.lib.URL#$port\n[esperecyan\\url\\lib\\URL-\u003epath]: https://esperecyan.github.io/url/class-esperecyan.url.lib.URL#$path\n[esperecyan\\url\\lib\\URL-\u003equery]: https://esperecyan.github.io/url/class-esperecyan.url.lib.URL#$query\n[esperecyan\\url\\lib\\URL-\u003efragment]: https://esperecyan.github.io/url/class-esperecyan.url.lib.URL#$fragment\n[esperecyan\\url\\lib\\URL-\u003ecannotBeABaseURLFlag]: https://esperecyan.github.io/url/class-esperecyan.url.lib.URL#$cannotBeABaseURLFlag\n[esperecyan\\url\\lib\\URL-\u003eobject]: https://esperecyan.github.io/url/class-esperecyan.url.lib.URL#$object\n[esperecyan\\url\\lib\\URL::$specialSchemes]: https://esperecyan.github.io/url/class-esperecyan.url.lib.URL#$specialSchemes\n[esperecyan\\url\\lib\\URL-\u003eisSpecial()]: https://esperecyan.github.io/url/class-esperecyan.url.lib.URL#_isSpecial\n[esperecyan\\url\\lib\\URL-\u003eisIncludingCredentials()]: https://esperecyan.github.io/url/class-esperecyan.url.lib.URL#_isIncludingCredentials\n[esperecyan\\url\\lib\\URL-\u003ecannotHaveUsernamePasswordPort()]: https://esperecyan.github.io/url/class-esperecyan.url.lib.URL#_cannotHaveUsernamePasswordPort\n[esperecyan\\url\\lib\\URL::WINDOWS_DRIVE_LETTER]: https://esperecyan.github.io/url/class-esperecyan.url.lib.URL#WINDOWS_DRIVE_LETTER\n[esperecyan\\url\\lib\\URL::NORMALIZED_WINDOWS_DRIVE_LETTER]: https://esperecyan.github.io/url/class-esperecyan.url.lib.URL#NORMALIZED_WINDOWS_DRIVE_LETTER\n[esperecyan\\url\\lib\\URL::stringStartsWithWindowsDriveLetter()]: https://esperecyan.github.io/url/class-esperecyan.url.lib.URL#_stringStartsWithWindowsDriveLetter\n[esperecyan\\url\\lib\\URL-\u003eshortenPath()]: https://esperecyan.github.io/url/class-esperecyan.url.lib.URL#_shortenPath\n[esperecyan\\url\\lib\\URL::SINGLE_DOT_PATH_SEGMENT]: https://esperecyan.github.io/url/class-esperecyan.url.lib.URL#SINGLE_DOT_PATH_SEGMENT\n[esperecyan\\url\\lib\\URL::DOUBLE_DOT_PATH_SEGMENT]: https://esperecyan.github.io/url/class-esperecyan.url.lib.URL#DOUBLE_DOT_PATH_SEGMENT\n[esperecyan\\url\\lib\\URL::URL_CODE_POINTS]: https://esperecyan.github.io/url/class-esperecyan.url.lib.URL#URL_CODE_POINTS\n[esperecyan\\url\\lib\\URL::parseURL()]: https://esperecyan.github.io/url/class-esperecyan.url.lib.URL#_parseURL\n[esperecyan\\url\\lib\\URL::parseBasicURL()]: https://esperecyan.github.io/url/class-esperecyan.url.lib.URL#_parseBasicURL\n[esperecyan\\url\\lib\\URL-\u003esetUsername()]: https://esperecyan.github.io/url/class-esperecyan.url.lib.URL#_setUsername\n[esperecyan\\url\\lib\\URL-\u003esetPassword()]: https://esperecyan.github.io/url/class-esperecyan.url.lib.URL#_setPassword\n[esperecyan\\url\\lib\\URL-\u003eserializeURL()]: https://esperecyan.github.io/url/class-esperecyan.url.lib.URL#_serializeURL\n[esperecyan\\url\\lib\\URL-\u003egetOrigin()]: https://esperecyan.github.io/url/class-esperecyan.url.lib.URL#_getOrigin\n[esperecyan\\url\\lib\\URLencoding::parseURLencoded()]: https://esperecyan.github.io/url/class-esperecyan.url.lib.URLencoding#_parseURLencoded\n[esperecyan\\url\\lib\\URLencoding::serializeURLencodedByte()]: https://esperecyan.github.io/url/class-esperecyan.url.lib.URLencoding#_serializeURLencodedByte\n[esperecyan\\url\\lib\\URLencoding::serializeURLencoded()]: https://esperecyan.github.io/url/class-esperecyan.url.lib.URLencoding#_serializeURLencoded\n[esperecyan\\url\\lib\\URLencoding::parseURLencodedString()]: https://esperecyan.github.io/url/class-esperecyan.url.lib.URLencoding#_parseURLencodedString\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fesperecyan%2Furl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fesperecyan%2Furl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fesperecyan%2Furl/lists"}