Exemplo n.º 1
0
 /**
  * Gets whether regexp is to be applied in multiline mode.
  * @return boolean
  */
 public function getMultiline()
 {
     return $this->engine->getMultiline();
 }
Exemplo n.º 2
0
 /**
  * Gets whether the regexp matching is case insensitive.
  * @return boolean
  */
 function getIgnoreCase()
 {
     return $this->engine->getIgnoreCase();
 }
Exemplo n.º 3
0
 /**
  * Sets the maximum possible replacements for each pattern.
  * @param int $limit
  */
 public function setLimit($limit)
 {
     $this->engine->setLimit($limit);
 }