Last active
August 2, 2021 21:47
-
-
Save ismail1432/a4eec57f7f8cc8a8d9bc6e99599e3e44 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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