Signatur
continue [$levels = 1];
Beschreibung
Wie break unterstützt es Level.
Rückgabewert
Typ
void
Beispiele
Filter
<?php
foreach ($items as $item) {
if ($item->deleted) continue;
process($item);
}