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


PHP ParserOptions::getUseDynamicDates方法代码示例

本文整理汇总了PHP中ParserOptions::getUseDynamicDates方法的典型用法代码示例。如果您正苦于以下问题:PHP ParserOptions::getUseDynamicDates方法的具体用法?PHP ParserOptions::getUseDynamicDates怎么用?PHP ParserOptions::getUseDynamicDates使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ParserOptions的用法示例。


在下文中一共展示了ParserOptions::getUseDynamicDates方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: internalParse

 /**
  * Helper function for parse() that transforms wiki markup into
  * HTML. Only called for $mOutputType == self::OT_HTML.
  *
  * @private
  *
  * @param $text string
  * @param $isMain bool
  * @param $frame bool
  *
  * @return string
  */
 function internalParse($text, $isMain = true, $frame = false)
 {
     wfProfileIn(__METHOD__);
     $origText = $text;
     # Hook to suspend the parser in this state
     if (!wfRunHooks('ParserBeforeInternalParse', array(&$this, &$text, &$this->mStripState))) {
         wfProfileOut(__METHOD__);
         return $text;
     }
     # if $frame is provided, then use $frame for replacing any variables
     if ($frame) {
         # use frame depth to infer how include/noinclude tags should be handled
         # depth=0 means this is the top-level document; otherwise it's an included document
         if (!$frame->depth) {
             $flag = 0;
         } else {
             $flag = Parser::PTD_FOR_INCLUSION;
         }
         $dom = $this->preprocessToDom($text, $flag);
         $text = $frame->expand($dom);
     } else {
         # if $frame is not provided, then use old-style replaceVariables
         $text = $this->replaceVariables($text);
     }
     wfRunHooks('InternalParseBeforeSanitize', array(&$this, &$text, &$this->mStripState));
     $text = Sanitizer::removeHTMLtags($text, array(&$this, 'attributeStripCallback'), false, array_keys($this->mTransparentTagHooks));
     wfRunHooks('InternalParseBeforeLinks', array(&$this, &$text, &$this->mStripState));
     # Tables need to come after variable replacement for things to work
     # properly; putting them before other transformations should keep
     # exciting things like link expansions from showing up in surprising
     # places.
     $text = $this->doTableStuff($text);
     $text = preg_replace('/(^|\\n)-----*/', '\\1<hr />', $text);
     $text = $this->doDoubleUnderscore($text);
     $text = $this->doHeadings($text);
     if ($this->mOptions->getUseDynamicDates()) {
         $df = DateFormatter::getInstance();
         $text = $df->reformat($this->mOptions->getDateFormat(), $text);
     }
     $text = $this->replaceInternalLinks($text);
     $text = $this->doAllQuotes($text);
     $text = $this->replaceExternalLinks($text);
     # replaceInternalLinks may sometimes leave behind
     # absolute URLs, which have to be masked to hide them from replaceExternalLinks
     $text = str_replace($this->mUniqPrefix . 'NOPARSE', '', $text);
     $text = $this->doMagicLinks($text);
     $text = $this->formatHeadings($text, $origText, $isMain);
     wfProfileOut(__METHOD__);
     return $text;
 }
开发者ID:h4ck3rm1k3,项目名称:mediawiki,代码行数:62,代码来源:Parser.php


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