Skip to content

Instantly share code, notes, and snippets.

@violetyk
Created February 26, 2013 07:33
Show Gist options
  • Select an option

  • Save violetyk/5036690 to your computer and use it in GitHub Desktop.

Select an option

Save violetyk/5036690 to your computer and use it in GitHub Desktop.
<?php
// PEAR タイプ
switch ($condition) {
case 1:
# code...
break;
default:
# code...
break;
}
// Zend Frameworkタイプ
switch ($condition) {
case 1:
# code...
break;
default:
# code...
break;
}
// CakePHPタイプ
switch ($condition) {
case 1:
# code...
break;
default:
# code...
break;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment