Eso es algo así:
Código PHP:
Ver originalforeach ($value as $c => $v) {
$this->_nav .= "<li><a href=\"{$v['href']}\" class=\"{$v['class']}\">$label[$c]</a></li>" . PHP_EOL;
}
edito: así si quieres con un for:
Código PHP:
Ver originalfor ($a = 0, $total = count($value); $a < $total; $a++) { $this->_nav .= "<li><a href=\"{$value[$a]['href']}\" class=\"{$value[$a]['class']}\">$label[$a]</a></li>" . PHP_EOL;
}