PHP 8.5.0 Alpha 4 available for testing

Voting

: one plus seven?
(Example: nine)

The Note You're Voting On

rjsteinert.com
14 years ago
The most basic example that print "13", skipping over 2.

<?php
$arr
= array(1, 2, 3);
foreach(
$arr as $number) {
if(
$number == 2) {
continue;
}
print
$number;
}
?>

<< Back to user notes page

To Top