本文整理汇总了PHP中Parser::Parser方法的典型用法代码示例。如果您正苦于以下问题:PHP Parser::Parser方法的具体用法?PHP Parser::Parser怎么用?PHP Parser::Parser使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Parser
的用法示例。
在下文中一共展示了Parser::Parser方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: ContentParser
function ContentParser()
{
global $CONFIG;
parent::Parser();
$this->html_auth =& $CONFIG['html_auth'];
$this->forbidden_tags =& $CONFIG['forbidden_tags'];
}
示例2: array
function __construct()
{
#
# Constructor function. Initialize the parser object.
#
# Add extra escapable characters before parent constructor
# initialize the table.
$this->escape_chars .= ':|';
# Insert extra document, block, and span transformations.
# Parent constructor will do the sorting.
$this->document_gamut += array("doFencedCodeBlocks" => 5, "stripFootnotes" => 15, "stripAbbreviations" => 25, "appendFootnotes" => 50);
$this->block_gamut += array("doFencedCodeBlocks" => 5, "doTables" => 15, "doDefLists" => 45);
$this->span_gamut += array("doFootnotes" => 5, "doAbbreviations" => 70);
parent::Parser();
}
示例3: BBCodeHighlighter
function BBCodeHighlighter()
{
parent::Parser();
}
示例4: DocParser
function DocParser($aFile)
{
parent::Parser($aFile);
}
示例5: ContentUnparser
function ContentUnparser()
{
parent::Parser();
}
示例6: DBParser
function DBParser($aProjname, $aFile, $aDB)
{
$this->iDB = $aDB;
$this->iLogNbr = 0;
$this->iProjName = $aProjname;
parent::Parser($aFile);
}
示例7: TemplateHighlighter
function TemplateHighlighter()
{
parent::Parser();
}
示例8: ContentSecondParser
function ContentSecondParser()
{
parent::Parser();
}