CONTINUE

CONTINUE jumps to the beginning of enclosing the looping construct.

while (list($key,$value) = each($arr)) {
    if ($key % 2) { // skip even members
        continue;
    }
    do_something_odd ($value);
}