url icon indicating copy to clipboard operation
url copied to clipboard

Swiss Army knife for urls.

Results 1 url issues
Sort by recently updated
recently updated
newest added

When the url contains unicode, `toString()`, returns an url encoded string which is not human readable ```php $reference = Url::parse("https://test.com"); $url = $reference->resolve('/デジカ/'); echo $url->toString(); // https://test.com/%E3%83%87%E3%82%B8%E3%82%AB/ ``` I suggest...