1
0
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:
Jakub Vrana
2010-05-07 18:10:35 +02:00
parent 5050de574f
commit 7f3ccd3b51
4 changed files with 5 additions and 5 deletions

View File

@@ -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('//', '!"#$&\'()*+,-./:;<=>?@[\]^`{|}'));