_decrypt() protected method

Decrypt and unserialize a previously encrypted string.
protected _decrypt ( string $encrypted ) : array
$encrypted string The base64 encoded and encrypted string.
return array The cleartext data.
示例#1
0
 public function decrypt($encrypted)
 {
     return parent::_decrypt($encrypted);
 }