0

たとえば、次のテキストがあります。

<content>Foo</content>This is only a <b>test</b><content>Bar</content>Again, only a test.

Foo2 つのエントリを持つ配列を作成するにはどうすればよいBarですか?

4

1 に答える 1

3
preg_match_all("/<content>(.+?)<\/content>/is", $string, $matches);

結果は$matches配列に入れられます。

$matches[0]、などでアクセスします$matches[1]

幸運を!

編集:preg_match_all()すべての結果が得られます!ヒントをくれた@Blakeに感謝します。

于 2012-08-12T19:45:57.000 に答える