mirror of
https://github.com/danog/tgseclib.git
synced 2024-12-03 18:17:49 +01:00
Merge pull request #1115 from langemeijer/master
Refactor create_function() into anonymous function
This commit is contained in:
commit
3fe35a4976
@ -1686,7 +1686,7 @@ class X509
|
|||||||
$value = array_pop($value); // Always strip data type.
|
$value = array_pop($value); // Always strip data type.
|
||||||
}
|
}
|
||||||
} elseif (is_object($value) && $value instanceof Element) {
|
} 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));
|
$value = strtoupper(preg_replace_callback('#[^\x20-\x7E]#', $callback, $value->element));
|
||||||
}
|
}
|
||||||
$output.= $desc . '=' . $value;
|
$output.= $desc . '=' . $value;
|
||||||
|
Loading…
Reference in New Issue
Block a user