Skip to content

Instantly share code, notes, and snippets.

@mandrius
Last active March 26, 2018 03:52
Show Gist options
  • Save mandrius/c4566df030c4bdfd6495655b11fae8fe to your computer and use it in GitHub Desktop.
Save mandrius/c4566df030c4bdfd6495655b11fae8fe to your computer and use it in GitHub Desktop.
// PHP $_POST
$name = $_POST['name']; // form param
// Drupal 8 $_POST
$name = \Drupal::request()->request->get('name'); // form param
// Drupal 8 $_GET
$query = \Drupal::request()->query->get('name');
// Get HOST
$host = \Drupal::request()->getHost();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment