我试图在预先确定的模式中挑选出所有单词,但它不起作用:
$html = "<tooltip>Do</tooltip> you<tooltip>know</tooltip>";
我希望 preg_match_all 返回
数组([0] => 数组([0] => 做)[1] => 数组([0] => 知道))
使用这种模式:
preg_match_all("/<tooltip ?.*>(.*)<\/tooltip>/", $html, $matches);
相反,它正在返回:
数组([0] => 数组([0] => 你知道吗)[1] => 数组([0] => 知道))
我猜是我的模式错了,但我不知道是什么?>
有任何想法吗?
谢谢