Skip to content

Instantly share code, notes, and snippets.

@light9
Created May 14, 2015 15:48
Show Gist options
  • Select an option

  • Save light9/dfbad9fe8b3549b386ff to your computer and use it in GitHub Desktop.

Select an option

Save light9/dfbad9fe8b3549b386ff to your computer and use it in GitHub Desktop.
parse url string
$url = "https://mysite.com/test/1234?email=xyz4@test.com&testin=123";
$query_str = parse_url($url, PHP_URL_QUERY);
parse_str($query_str, $query_params);
print_r($query_params);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment