Property | Type | Description | |
---|---|---|---|
$encoding | string | The encoding. | |
$length | interger | Length of the hash to be returned. | |
$password | string | Encrypted Key. | |
$specialCharactersForward | array | Bad URL characters. | |
$specialCharactersReversed | array | Bad URL characters. |
Method | Description | |
---|---|---|
__construct ( ) | Construct the Encrypter with the fields. | |
decrypt ( string $value ) : string | Decrypt a string. | |
encrypt ( string $value ) : string | Encrypt the string using your app and session keys, then return the new encrypted string. | |
url_decode ( $string ) : string | Decode the string to be used as a url slug. | |
url_encode ( $string ) : string | Encode the string to be used as a url slug. |
Method | Description | |
---|---|---|
url_base64_decode ( string $string ) : string | Base 64 decode. | |
url_base64_encode ( string $string ) : string | Base 64 encode. |
protected url_base64_decode ( string $string ) : string | ||
$string | string | String to decode |
return | string |
protected url_base64_encode ( string $string ) : string | ||
$string | string | String to encode |
return | string |
public url_decode ( $string ) : string | ||
return | string |
public url_encode ( $string ) : string | ||
return | string |
protected interger $length | ||
return | interger |
protected array $specialCharactersForward | ||
return | array |
protected array $specialCharactersReversed | ||
return | array |