选择语言 :

 Core_Text::rc4_decryption

解密使用rc4优化版加密的字符串

null Core_Text::rc4_decryption( string $string [, $key = null ] )

参数列表

参数 类型 描述 默认值
$string string $string
$key unknown null
File: ./core/classes/text.class.php
public static function rc4_decryption($string, $key = null)
{
    return Text::rc4($string, true, $key);
}