php-src/ext/opcache/tests/bug75255.phpt
2017-09-27 17:16:24 +03:00

19 lines
311 B
PHP

--TEST--
Bug #75255 (Request hangs and not finish)
--FILE--
<?php
function generatePlanImage() {
if ($abc > 5) {
$abc = 5;
}
for ($row = 0; $row < $abc; $row++) {
for ($col = 0; $col < $numCols; $col++) {
getPossibleRatio($abc);
}
}
}
?>
DONE
--EXPECT--
DONE