sha1
Calculate the SHA-1 hash of the string.
php
Twine\Str::sha1( [ bool $mode = Twine\Config\Sha1::DEFAULT ] ) : Twine\StrParameters
$mode
A SHA-1 mode flag.
Available SHA-1 modes:
Twine\Config\Sha1::DEFAULT: Return the hashTwine\Config\Sha1::RAW: Return the raw binary of the hash
Examples
php
$string = new Twine\Str('john pinkerton');
$string->sha1(); // Returns 'fcaf28c7705ba8f267472bb5aa8ad883f6bf0427'