You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (!$bfCharRangeInfo->containsCharacterCode($characterCode)) {
47
54
continue;
48
55
}
49
56
50
57
if (($char = $bfCharRangeInfo->toUnicode($characterCode)) !== "\0") { // Some characters map to NULL in one BFRange and to an actual character in another
51
-
return$char;
58
+
return$this->charCache[$characterCode] = $char;
52
59
}
53
60
}
54
61
55
62
if ($char === "\0") {
56
-
return$char; // Only return NULL when it is the only character this is mapped to
63
+
return$this->charCache[$characterCode] = $char; // Only return NULL when it is the only character this is mapped to
0 commit comments