Skip to content

Instantly share code, notes, and snippets.

@laddy
Created March 14, 2018 01:46
Show Gist options
  • Save laddy/4b96d5787f4bd250df2e1f9eb2a1f108 to your computer and use it in GitHub Desktop.
Save laddy/4b96d5787f4bd250df2e1f9eb2a1f108 to your computer and use it in GitHub Desktop.
PHP SHA256 Test
<?php
$now = microtime();
echo $now . "\n";
for ( $i = 0; $i < 1024; $i++ )
{
$now = hash('sha256', $now );
}
echo $now . "\n"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment