コード例 #1
0
ファイル: Parser.php プロジェクト: Tarendai/spring-website
 /**
  * Increment the expensive function count
  *
  * @return bool false if the limit has been exceeded
  */
 function incrementExpensiveFunctionCount()
 {
     $this->mExpensiveFunctionCount++;
     return $this->mExpensiveFunctionCount <= $this->mOptions->getExpensiveParserFunctionLimit();
 }