Answer the question
In order to leave comments, you need to log in
How to overcome the cycle that eats up all the memory?
I am making a sandbox where I want to compile php. Faced a problem - if you run an infinite loop with a execution limit of 1 second
<?php
$i=1;
do{
echo 'Итерация номер '. $i . '<br>';
$i++;
}while($i != 0);
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question