Created
December 14, 2016 07:27
-
-
Save ilhamarrouf/b4ae41b931fdb207ac3fffba20206e4d to your computer and use it in GitHub Desktop.
Struktur Kontrol PHP
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 | |
$a = saya; | |
switch ($a) { | |
case kamu : | |
echo "Angka Nol"; | |
break; | |
case dia : | |
echo "Angka Satu"; | |
break; | |
case saya : | |
echo "Angka Dua"; | |
break; | |
case mereka : | |
echo "Angka Tiga"; | |
break; | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment