当我尝试执行此文件时,它会显示黑页..
我启动了firebug它向我显示NetworkError:500内部服务器错误 我试图解决,但在这里找不到任何问题..
所以你能帮我找出错误或问题吗???
class DesEncryptor
{
protected $_key;
protected $_iv;
protected $_blocksize = 8;
protected $_encrypt;
protected $_cipher;
/**
* Creates a symmetric Data Encryption Standard (DES) encryptor object
* with the specified key and initialization vector.
*
* @param $key
* @param $iv
* @param bool $encrypt
*/
public function __construct($key, $iv, $encrypt = true)
{
$this->_key = $key;
$this->_iv = $iv;
$this->_encrypt = $encrypt;
$this->_cipher = mcrypt_module_open(MCRYPT_DES, '', MCRYPT_MODE_CBC, '');
mcrypt_generic_init($this->_cipher, $this->_key, $this->_iv);
}
public function __destruct()
{
mcrypt_generic_deinit($this->_cipher);
mcrypt_module_close($this->_cipher);
}
/**
* Transforms the specified region of the specified byte array using PCKS7 padding.
* @param $text
* @return string
*/
public function transformFinalBlock($text)
{
if ($this->_encrypt)
{
$padding = $this->_blocksize - strlen($text) % $this->_blocksize;
$text .= str_repeat(pack('C', $padding), $padding);
}
$text = $this->transformBlock($text);
if (!$this->_encrypt)
{
$padding = array_values(unpack('C', substr($text, -1)))[0];
$text = substr($text, 0, strlen($text) - $padding);
}
return $text;
}
/**
* Transforms the specified region of the specified byte array.
* @param $text
* @return string
*/
public function transformBlock($text)
{
if ($this->_encrypt)
{
return mcrypt_generic($this->_cipher, $text);
}
else
{
return mdecrypt_generic($this->_cipher, $text);
}
}
}
当我用var_dump()调试时,我在函数transformFinalBlock
中找到了$padding = array_values(unpack('C', substr($text, -1)))[0];
它让我误以为“'['意外”
伙计们,解决方案......
答案 0 :(得分:1)
阵列取消引用,这是您使用行$padding = array_values(unpack('C', substr($text, -1)))[0];
执行的操作,只能从php 5.4开始,在任何以前的版本中,您必须执行以下操作才能访问您的阵列:
$arr = array_values(unpack('C', substr($text, -1)));
$padding = $arr[0];