function vbextern($action = "") { switch($action) { case "bla" : doThis(); exit; case ".." : ... exit; default : doThat(); } }
include_once("vbextern.php"); vbextern($action = "bla"); vbextern($action = "do_something_else");