1 2 3 4 5 6 7 8 9 10 11 12 13 14
<?php $posts = array ( "1", "2", "3", "4" ); $counter = 0; foreach ( $posts as $post ) { if ( $post == "2" ) continue; printf ("%d\n", $post); $counter++; }; printf ("%d\n", $counter); ?>