Tag: php
Questions Related to php
Which language construct can best represent the following series of if conditionals?
if($a == 'a') { somefunction(); } else if ($a == 'b') { anotherfunction(); } else if ($a == 'c') { dosomething(); } else { donothing(); }