Created
August 28, 2018 11:53
-
-
Save dwdraju/0781b13a02e8a0f277c6a1cb14df0f97 to your computer and use it in GitHub Desktop.
Generate php load
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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