In Perl, the 'last' operator immediately exits the current loop, similar to 'break' in other languages. The 'next' operator skips to the next iteration, 'redo' restarts the current iteration without re-evaluating the condition, and 'leave' is not a valid Perl loop control operator.