Разница в том, что с create_function()
ваш код был представлен как строка и интерпретирован как код, но с анонимной функцией строка интерпретируется как строка, а не как код, который она содержит.
Вы можете просто извлечь свой код из строки, которая у вас есть в $encrypt
и $decrypt
. Это будет выглядеть так:
/*
* Removed the "use ($encrypt, $decrypt)" part,
* because those were the strings that contained the code,
* but now the code itself is part of the anonymous function.
*
* Instead, i added "use ($block_size)", because this is a vairable,
* which is not defined inside of your function, but still used in it.
* The other code containing variables might include such variables as
* well, which you need to provide in the use block, too.
*/
$lambda_functions[$code_hash] = function ( $action, &$self, $text ) use ($block_size) {
if ($action == "encrypt") {
//Extract $init_encryptBlock here
$ciphertext = "";
$text = $self->_pad($text);
$plaintext_len = strlen($text);
$in = $self->encryptIV;
for ($i = 0; $i < $plaintext_len; $i+= $block_size) {
$in = substr($text, $i, $block_size) ^ $in;
// Extract $_encryptBlock here
$ciphertext.= $in;
}
if ($self->continuousBuffer) {
$self->encryptIV = $in;
}
return $ciphertext;
} else {
//Extract $decrypt here
}
};
Пожалуйста, имейте в виду, что это не полный ответ. В коде вы найдете множество // Extract $variable here
комментариев, которые обозначают каждую переменную, содержащуюся в вашем коде, и которую нужно извлечь так, как я извлек код из $encrypt
.