0

那是我的代码:

preg_match('/\<span id\="([a-zA-Z0-9\s]+?)\"\>([a-zA-Z0-9\s]+?)\<\/span\>/', '<span id="1">test</span> <span id="2">test1</span>', $match);

    var_dump($match);

但是为什么在 $match 数组中只有 id=1 和测试?

4

1 回答 1

2

我相信您正在寻找preg_match_all

于 2012-08-26T16:42:43.137 回答