getByte(), "\x00\x09\x0A\x0C\x0D\x20()<>[]{}/%") === 0) { $v->value = (string) $tokenizer->getNextToken(); return $v; } $v->value = ''; return $v; } /** * Unescapes a name string. * * @param string $value * @return string */ static public function unescape($value) { if (strpos($value, '#') === false) return $value; return preg_replace_callback('/#([a-fA-F\d]{2})/', function($matches) { return chr(hexdec($matches[1])); }, $value); } /** * Helper method to create an instance. * * @param string $string * @return self */ public static function create($string) { $v = new self; $v->value = $string; return $v; } /** * Ensures that the passed value is a PdfName instance. * * @param mixed $name * @return self * @throws PdfTypeException */ public static function ensure($name) { return PdfType::ensureType(self::class, $name, 'Name value expected.'); } }