Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
たとえば、次のテキストがあります。
<content>Foo</content>This is only a <b>test</b><content>Bar</content>Again, only a test.
Foo2 つのエントリを持つ配列を作成するにはどうすればよいBarですか?
Foo
Bar
preg_match_all("/<content>(.+?)<\/content>/is", $string, $matches);
結果は$matches配列に入れられます。
$matches
$matches[0]、などでアクセスします$matches[1]。
$matches[0]
$matches[1]
幸運を!
編集:preg_match_all()すべての結果が得られます!ヒントをくれた@Blakeに感謝します。
preg_match_all()