Lines Matching refs:matches
7 preg_match($pattern, $file_content, $matches);
8 assert(isset($matches[1]));
9 $array = explode(",\n", $matches[1]);
21 preg_match_all($pattern, $fileContent, $matches, PREG_SET_ORDER);
22 foreach ($matches as $match) {
93 preg_match($pattern, $output, $matches);
94 assert(isset($matches[1]));
95 $asso_values = trim($matches[1], "\t \n{");
101 preg_match($pattern, $output, $matches);
102 assert(isset($matches[1]));
103 $word_list = trim($matches[1], "\t \n{");