1 2 3 4 5 6 7 8 9 10 11 12 13 14
--TEST-- test looping assert (pass) --INI-- zend.assertions=1 assert.exception=1 --FILE-- <?php for($i=0; $i<100000; $i++) { assert ($i < 100000, "The universe should make sense"); } var_dump(true); ?> --EXPECT-- bool(true)