Source Code:
(back to article)
<?php $message = 'This is the message to be hashed'; $hash = hash('sha256', $message); echo $hash;
Result:
Report an issue