PHP code example of fut / eahashor
1. Go to this page and download the library: Download fut/eahashor library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
fut / eahashor example snippets
$hashor = new \Fut\EAHashor("test");
echo $hashor->getHashedString() . PHP_EOL;
$hashor = new \Fut\EAHashor();
echo $hashor->setString("test")->getHashedString() . PHP_EOL;
echo \Fut\EAHashor::getHash("test") . PHP_EOL;