20 lines
313 B
PHP
20 lines
313 B
PHP
<?php
|
|
echo "Hello, heavy stuff here:\n";
|
|
|
|
function someReallyHeavyStuff($lima, $limb){
|
|
$result=0;
|
|
for($i=0;$i<$lima;$i++){
|
|
$sum=0;
|
|
for($j=0;$j<$limb;$j++){
|
|
$sum+=$i+$j;
|
|
}
|
|
$result+=$sum;
|
|
}
|
|
return $result;
|
|
}
|
|
|
|
$r = someReallyHeavyStuff(10000,100000);
|
|
|
|
echo "The heavy result: $r\n"
|
|
|
|
?>
|