Skip to content

Instantly share code, notes, and snippets.

@n-osennij
Created February 4, 2017 14:37
Show Gist options
  • Save n-osennij/d3c5f5a40ef3c6f51a6f85f4efe5cada to your computer and use it in GitHub Desktop.
Save n-osennij/d3c5f5a40ef3c6f51a6f85f4efe5cada to your computer and use it in GitHub Desktop.
2
<?php
if (condition) {
# code...
} elseif (condition) {
# code...
} elseif (condition) {
# code...
} else {
# code...
}
switch (variable) {
case 'value2':
# code...
break;
case 'value2':
# code...
break;
case 'value3':
# code...
break;
default:
# code...
break;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment