我试图使用preg_match获取字符串中的单词数组。WORD1
和WORD2
是可以更改的变量。
$content= 'class="gametitle WORD1">< ggg class="userid">WORD2 </ gg>';
我想获得WORD1
和WORD2
现在我只能得到第1个字
$prematch=preg_match('/.class="gametitle.(.*)".*/isU', $content, $matches);
echo $matches[1];
提前thx!
答案 0 :(得分:0)
if (preg_match_all('/class\s?=\s?"gametitle\s+(\w+)"><[^>]+>\s?(\w+)/', $text, $matches)){
$word1 = $matches[1][0];
$word2 = $matches[2][0];
}
或preg_match
:
if (preg_match('/class\s?=\s?"gametitle\s+(\w+)"><[^>]+>\s?(\w+)/', $text, $matches)){
$word1 = $matches[1];
$word2 = $matches[2];
}