<?php function the_mvc_while(callable $condition, callable $body) { while ($condition()) $body(); } $i = 0; $count = 10; $condition = function() use (&$i, $count) { $i++; return $i < $count; }; $body = function() use (&$i) { echo $i."\n"; }; the_mvc_while($condition, $body);
You have javascript disabled. You will not be able to edit any code.
Value for `_results` contains invalid data `array`