Skip to content

Instantly share code, notes, and snippets.

@satyendrakumarsingh
Last active May 28, 2016 09:55
Show Gist options
  • Save satyendrakumarsingh/83a5e9a8edcf6d3700e48179b112a892 to your computer and use it in GitHub Desktop.
Save satyendrakumarsingh/83a5e9a8edcf6d3700e48179b112a892 to your computer and use it in GitHub Desktop.
PHP hash_algos() method print all the supported hash algorithm as of PHP 5.6.0
<?php
// Print all the supported hash algorithm as of PHP 5.6.0
// hash_algos() return array as result
print_r(hash_algos());
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment