Skip to content

Instantly share code, notes, and snippets.

@szepeviktor
Created December 17, 2024 06:48
Show Gist options
  • Save szepeviktor/30b991340d264d22c809f24091650368 to your computer and use it in GitHub Desktop.
Save szepeviktor/30b991340d264d22c809f24091650368 to your computer and use it in GitHub Desktop.
Build properly encoded URL
<?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