sha256 php

Solutions on MaxInterview for sha256 php by the best coders in the world

showing results for - "sha256 php"
Eric
05 Apr 2017
1echo hash('sha256', $_POST['ppasscode']);
Alexa
05 Mar 2019
1$hash = hash('sha256', 'hello, world!');
2var_dump($hash);
3
Monica
17 May 2017
1echo hash('sha256', 'some string');