/home/techb158/exp.abdallabala.com/vendor/setasign/fpdi/src/PdfParser/Type
NameSizeModeActions
PdfArray.php21090644editdlrm
PdfBoolean.php9110644editdlrm
PdfDictionary.php35440644editdlrm
PdfHexString.php18370644editdlrm
PdfIndirectObject.php25740644editdlrm
PdfIndirectObjectReference.php11840644editdlrm
PdfName.php19120644editdlrm
PdfNull.php3730644editdlrm
PdfNumeric.php9200644editdlrm
PdfStream.php104330644editdlrm
PdfString.php51640644editdlrm
PdfToken.php8970644editdlrm
PdfType.php20550644editdlrm
PdfTypeException.php5080644editdlrm
Edit: /home/techb158/exp.abdallabala.com/vendor/setasign/fpdi/src/PdfParser/Type/PdfName.php (1912B)
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 */ public static 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.'); } }