$happy = 'HELLO';
switch $happy {
case 'Hi':
// Do something
break;
case 'HELLO':
// Do something
break;
}
function bob() {
print 'hello';
}
bob();
// Will print hello
?>
function bob($bob) {
print '$bob';
}
bob('hello');
// Will print hello
?>
