printCharCode() публичный статический Метод

public static printCharCode ( $code ) : string
$code
Результат string
Пример #1
0
 private function assertValidStringCharacterCode($code, $position)
 {
     // SourceCharacter
     if ($code < 0x20 && $code !== 0x9) {
         throw new SyntaxError($this->source, $position, "Invalid character within String: " . Utils::printCharCode($code));
     }
 }