Skip to content

Instantly share code, notes, and snippets.

@ahkmunna
Created August 7, 2018 08:59
Show Gist options
  • Save ahkmunna/883b635e6f438e253837a1b6ea13307a to your computer and use it in GitHub Desktop.
Save ahkmunna/883b635e6f438e253837a1b6ea13307a to your computer and use it in GitHub Desktop.
Remove parameter from the URL query string.
if ( ! function_exists('remove_url_parameter') )
{
/**
* Remove given parameter from the given url str
*/
function remove_url_parameter($url, $key = false)
{
return preg_replace( '/'. ($key ? '(\&|)' . $key . '(\=(.*?)((?=&(?!amp\;))|$)|(.*?)\b)' : '(\?.*)').'/i' , '', $url);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment