Skip to content

Instantly share code, notes, and snippets.

@design-innovations
Last active September 15, 2020 01:04
Show Gist options
  • Save design-innovations/e3d714827165d66d1abe96c44834154d to your computer and use it in GitHub Desktop.
Save design-innovations/e3d714827165d66d1abe96c44834154d to your computer and use it in GitHub Desktop.
PHP - Null coalescing operator
<?php
$username = $_GET['user'] ?? 'nobody';
// This is equivalent to:
// $username = isset($_GET['user']) ? $_GET['user'] : 'nobody';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment