06.07.2012, 19:02
Hello,
can explain me the function
?
this function block / stop the loop ?
can explain me the function
PHP код:
break
this function block / stop the loop ?
break
public OnFilterScriptInit()
{
for(new i = 0; i < 100; ++i)
{
printf("%i", i);
if(i == 50)
{
break;
}
}
return 1;
}