解决方案一:升级php版本为5.3(包含)以上的版本
解决方案二:找到根目录下的system/core/crypt.php,把以下代码
if (strstr($data, '|'))
{
$data_arr = explode('|', $data);
$algorithm = $data_arr[0];
$data = str_replace($algorithm . '|', '', $data);
$data = $this->hex_to_str($data);
}
替换文件中的(在文件41行)
if ($algorithm = strstr($data, '|', true))
{
$data = str_replace($algorithm . '|', '', $data);
$data = $this->hex_to_str($data);
}
还有遇到其他疑难杂症大家私信我
阅读全文
收起全文