コード例 #1
0
 /**
  * Parses result of preg_match
  *
  * @return array
  */
 public function getPmMatches()
 {
     $result['count'] = $this->pmCount;
     $result['expr'] = Formatter::sanitize($this->pmMatches[0]);
     $result['mtch'] = Formatter::sanitize($this->pmMatches[1]);
     return $result;
 }