Skip to content

Instantly share code, notes, and snippets.

@ismail1432
Last active August 2, 2021 21:47
Show Gist options
  • Save ismail1432/a4eec57f7f8cc8a8d9bc6e99599e3e44 to your computer and use it in GitHub Desktop.
Save ismail1432/a4eec57f7f8cc8a8d9bc6e99599e3e44 to your computer and use it in GitHub Desktop.
<?php
if (isset([$_GET['id']) && isset([$_GET['limit'])) {
// stuff
}
// can be
if (isset($_GET['id'], $_GET['limit']) {
// stuff
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment