Created
December 17, 2024 06:48
-
-
Save szepeviktor/30b991340d264d22c809f24091650368 to your computer and use it in GitHub Desktop.
Build properly encoded URL
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function build_url(string $host, array $segments = [], array $parameters = []): string | |
{ | |
return sprintf( | |
'https://%s/%s?%s', | |
idn_to_ascii($host), | |
implode('/', array_map('urlencode', $segments)), | |
http_build_query($parameters, '', '&') | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment