Skip to content

Instantly share code, notes, and snippets.

@dwdraju
Created August 28, 2018 11:53
Show Gist options
  • Save dwdraju/0781b13a02e8a0f277c6a1cb14df0f97 to your computer and use it in GitHub Desktop.
Save dwdraju/0781b13a02e8a0f277c6a1cb14df0f97 to your computer and use it in GitHub Desktop.
Generate php load
<?php
$x = 0.0001;
for ($i = 0; $i <= 1000000; $i++) {
$x += sqrt($x);
}
echo "OK!";
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment