I don't know perl, but your example suggests a function would work:
function doBig() {
//do big stuff
}
//start code
if($time_for_big_stuff) {
doBig();
//do more stuff
}
I don't about a PHP goto, per se, but it's generally considered bad form to use gotos, and they are very rarely needed.