php-8.0.30-src/ext/opcache/tests/bug75255.phpt

21 lines
359 B
PHP

--TEST--
Bug #75255 (Request hangs and not finish)
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--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