robot tcs, test charts, robot container added
[ta/cloudtaf.git] / resources / test_containers / php-apache / index.php
1 <?php
2   $x = 0.0001;
3   for ($i = 0; $i <= 1000000; $i++) {
4     $x += sqrt($x);
5   }
6   echo "OK!";
7 ?>