Lines Matching defs:matches
123 * @param array $matches
126 protected function autoEmbedCallBack($matches)
132 $media = cleanID($matches[1]);
135 if (!file_exists($file)) return $matches[0]; //bad reference, keep as is
382 $count = preg_match_all('/\s*(?:("[^"]*"[^,]+),*)|([^,]+)\s*,*/', $addresses, $matches, PREG_SET_ORDER);
384 if ($count !== false && is_array($matches)) {
385 foreach ($matches as $match) {
396 if (preg_match('#(.*?)<(.*?)>#', $part, $matches)) {
397 $text = trim($matches[1]);
398 $addr = $matches[2];