PHP Basics Learning Mode

Which language construct can best represent the following series of if conditionals?

<?php
    if($a == 'a') {
        somefunction();
    } else if ($a == 'b') {
        anotherfunction();
    } else if ($a == 'c') {
        dosomething();
    } else {
        donothing();
    }
?>