当前位置: 首页>>代码示例>>PHP>>正文


PHP Parser::Parser方法代码示例

本文整理汇总了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'];
 }
开发者ID:janus57,项目名称:PHPBoost_v3c,代码行数:7,代码来源:content_parser.class.php

示例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();
 }
开发者ID:rhapsody-project,项目名称:commons,代码行数:15,代码来源:ParserExtra.php

示例3: BBCodeHighlighter

 function BBCodeHighlighter()
 {
     parent::Parser();
 }
开发者ID:janus57,项目名称:PHPBoost_v3c,代码行数:4,代码来源:bbcode_highlighter.class.php

示例4: DocParser

 function DocParser($aFile)
 {
     parent::Parser($aFile);
 }
开发者ID:nourchene-benslimane,项目名称:rth_backup,代码行数:4,代码来源:jpgendoc.php

示例5: ContentUnparser

 function ContentUnparser()
 {
     parent::Parser();
 }
开发者ID:janus57,项目名称:PHPBoost_v3c,代码行数:4,代码来源:content_unparser.class.php

示例6: DBParser

 function DBParser($aProjname, $aFile, $aDB)
 {
     $this->iDB = $aDB;
     $this->iLogNbr = 0;
     $this->iProjName = $aProjname;
     parent::Parser($aFile);
 }
开发者ID:wahgithub,项目名称:chits_wah_emr,代码行数:7,代码来源:jpgendb.php

示例7: TemplateHighlighter

 function TemplateHighlighter()
 {
     parent::Parser();
 }
开发者ID:janus57,项目名称:PHPBoost_v3c,代码行数:4,代码来源:template_highlighter.class.php

示例8: ContentSecondParser

 function ContentSecondParser()
 {
     parent::Parser();
 }
开发者ID:janus57,项目名称:PHPBoost_v3c,代码行数:4,代码来源:content_second_parser.class.php


注:本文中的Parser::Parser方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。