本文整理汇总了PHP中Zend_Pdf_Element_Name::unescape方法的典型用法代码示例。如果您正苦于以下问题:PHP Zend_Pdf_Element_Name::unescape方法的具体用法?PHP Zend_Pdf_Element_Name::unescape怎么用?PHP Zend_Pdf_Element_Name::unescape使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Zend_Pdf_Element_Name
的用法示例。
在下文中一共展示了Zend_Pdf_Element_Name::unescape方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testUnescape
public function testUnescape()
{
$this->assertEquals(Zend_Pdf_Element_Name::unescape('My#20Cool#20Name#28#29'), 'My Cool Name()');
}
示例2: readElement
/**
* Read elemental object from a PDF stream
*
* @return Zend_Pdf_Element
* @throws Zend_Pdf_Exception
*/
public function readElement($nextLexeme = null)
{
if ($nextLexeme === null) {
$nextLexeme = $this->readLexeme();
}
/**
* Note: readElement() method is a public method and could be invoked from other classes.
* If readElement() is used not by Zend_Pdf_StringParser::getObject() method, then we should not care
* about _elements member management.
*/
switch ($nextLexeme) {
case '(':
return $this->_elements[] = $this->_readString();
case '<':
return $this->_elements[] = $this->_readBinaryString();
case '/':
return $this->_elements[] = new Zend_Pdf_Element_Name(Zend_Pdf_Element_Name::unescape($this->readLexeme()));
case '[':
return $this->_elements[] = $this->_readArray();
case '<<':
return $this->_elements[] = $this->_readDictionary();
case ')':
// fall through to next case
// fall through to next case
case '>':
// fall through to next case
// fall through to next case
case ']':
// fall through to next case
// fall through to next case
case '>>':
// fall through to next case
// fall through to next case
case '{':
// fall through to next case
// fall through to next case
case '}':
require_once 'Zend/Pdf/Exception.php';
throw new Zend_Pdf_Exception(sprintf('PDF file syntax error. Offset - 0x%X.', $this->offset));
default:
if (strcasecmp($nextLexeme, 'true') == 0) {
return $this->_elements[] = new Zend_Pdf_Element_Boolean(true);
} else {
if (strcasecmp($nextLexeme, 'false') == 0) {
return $this->_elements[] = new Zend_Pdf_Element_Boolean(false);
} else {
if (strcasecmp($nextLexeme, 'null') == 0) {
return $this->_elements[] = new Zend_Pdf_Element_Null();
}
}
}
$ref = $this->_readReference($nextLexeme);
if ($ref !== null) {
return $this->_elements[] = $ref;
}
return $this->_elements[] = $this->_readNumeric($nextLexeme);
}
}
示例3: _readElementalObject
/**
* Read elemental object from a PDF stream
*
* @return Zend_Pdf_Element
* @throws Zend_Pdf_Exception
*/
private function _readElementalObject($nextLexeme = null)
{
if ($nextLexeme === null) {
$nextLexeme = $this->_readLexeme();
}
switch ($nextLexeme) {
case '(':
return $this->_elements[] = $this->_readString();
case '<':
return $this->_elements[] = $this->_readBinaryString();
case '/':
return $this->_elements[] = new Zend_Pdf_Element_Name(Zend_Pdf_Element_Name::unescape($this->_readLexeme()));
case '[':
return $this->_elements[] = $this->_readArray();
case '<<':
return $this->_elements[] = $this->_readDictionary();
case ')':
// fall through to next case
// fall through to next case
case '>':
// fall through to next case
// fall through to next case
case ']':
// fall through to next case
// fall through to next case
case '>>':
// fall through to next case
// fall through to next case
case '{':
// fall through to next case
// fall through to next case
case '}':
throw new Zend_Pdf_Exception(sprintf('PDF file syntax error. Offset - 0x%X.', $this->_current));
default:
if (strcasecmp($nextLexeme, 'true') == 0) {
return $this->_elements[] = new Zend_Pdf_Element_Boolean(true);
} else {
if (strcasecmp($nextLexeme, 'false') == 0) {
return $this->_elements[] = new Zend_Pdf_Element_Boolean(false);
} else {
if (strcasecmp($nextLexeme, 'null') == 0) {
return $this->_elements[] = new Zend_Pdf_Element_Null();
}
}
}
$ref = $this->_readReference($nextLexeme);
if ($ref !== null) {
return $this->_elements[] = $ref;
}
return $this->_elements[] = $this->_readNumeric($nextLexeme);
}
}