mirror of
https://github.com/vrana/adminer.git
synced 2025-08-08 07:36:44 +02:00
Utilize single parameter implode
This commit is contained in:
@@ -106,7 +106,7 @@ function php_shrink($input) {
|
||||
|
||||
arsort($short_variables);
|
||||
foreach (array_keys($short_variables) as $number => $key) {
|
||||
$short_variables[$key] = short_identifier($number, implode("", range('a', 'z')) . '_' . implode("", range('A', 'Z'))); // could use also numbers and \x7f-\xff
|
||||
$short_variables[$key] = short_identifier($number, implode(range('a', 'z')) . '_' . implode(range('A', 'Z'))); // could use also numbers and \x7f-\xff
|
||||
}
|
||||
|
||||
$set = array_flip(preg_split('//', '!"#$&\'()*+,-./:;<=>?@[\]^`{|}'));
|
||||
|
Reference in New Issue
Block a user