Refactor create_function() into anonymous function

This commit is contained in:
Casper Langemeijer 2017-04-17 15:35:00 +02:00
parent 4a069f7c85
commit 4a0118bae6

View File

@ -1686,7 +1686,7 @@ class X509
$value = array_pop($value); // Always strip data type.
}
} elseif (is_object($value) && $value instanceof Element) {
$callback = create_function('$x', 'return "\x" . bin2hex($x[0]);');
$callback = function($x) { return '\x' . bin2hex($x[0]); };
$value = strtoupper(preg_replace_callback('#[^\x20-\x7E]#', $callback, $value->element));
}
$output.= $desc . '=' . $value;