Skip to content

Instantly share code, notes, and snippets.

@wpweb101
Last active April 15, 2021 13:43
Show Gist options
  • Save wpweb101/6d21386093c379cadee030baf697c9ee to your computer and use it in GitHub Desktop.
Save wpweb101/6d21386093c379cadee030baf697c9ee to your computer and use it in GitHub Desktop.
PHP Best Practices
<?php
if ( (condition1) || (condition2) ) {
// Your code
} elseif ( (condition3) && (condition4) ) {
// Your code
} else {
// Your code
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment