Quote:
Originally Posted by Gunderak
I gave this a go with scheduleevent but still the same results, max is 10,000 
|
PHP Code:
function onCreated() {
maxlooplimit = 100001;
example();
}
function example() {
for (temp.i = 0; temp.i < 99999; temp.i++) {
temp.c++;
}
echo(temp.c); // echos 99999
}