コード例 #1
0
ファイル: Regexp.php プロジェクト: xxspartan16/BMS-Market
 /**
  * Gets whether regexp is to be applied in multiline mode.
  * @return boolean
  */
 public function getMultiline()
 {
     return $this->engine->getMultiline();
 }
コード例 #2
0
ファイル: Regexp.php プロジェクト: nmicht/tlalokes-in-acst
 /**
  * Gets whether the regexp matching is case insensitive.
  * @return boolean
  */
 function getIgnoreCase()
 {
     return $this->engine->getIgnoreCase();
 }
コード例 #3
0
ファイル: Regexp.php プロジェクト: Ingewikkeld/phing
 /**
  * Sets the maximum possible replacements for each pattern.
  * @param int $limit
  */
 public function setLimit($limit)
 {
     $this->engine->setLimit($limit);
 }