Skip to content

Instantly share code, notes, and snippets.

@mustafatoker
Created February 13, 2018 09:59
Show Gist options
  • Save mustafatoker/16c62f37f344db5fbd074471510d0cd3 to your computer and use it in GitHub Desktop.
Save mustafatoker/16c62f37f344db5fbd074471510d0cd3 to your computer and use it in GitHub Desktop.
<?php
if ( ! isset($array['q']) || ! isset($array['w']) || ! isset($array['e'])) {
// PANIC
}
# Becomes
if ( ! isset($array['q'], $array['w'], $array['e'])) {
// OH NO!
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment