This commit is contained in:
Ben Harris 2017-03-27 16:24:09 -04:00
parent 5a74087115
commit 96cf1de31a
1 changed files with 1 additions and 1 deletions

View File

@ -162,7 +162,7 @@ class Utils {
foreach (self::charIn($text) as $char) {
$ord = ord($char);
if ($ord <= ord(' ') && $ord <= ord('~')) {
$ret .= mb_substr(" !゛#$%&'()*+、ー。/0123456789:;〈=〉?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[_|}~", $ord - ord(' '), 1);
$ret .= mb_substr(" !゛#$%&'()*+、ー。/0123456789:;〈=〉?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\_|}~", $ord - ord(' '), 1);
}
$ret .= " ";
}