文字列からテキストの一部を削除しようとしていますが、テキストの途中に変数があり、一致させるのが難しくなっています。PHP で変数を検索して削除するにはどうすればよいですか?
テキストは"<div class="about_us_item"><h2>Privacy Policy</h2><div>::cck::34::/cck::<br>::introtext::<h3>Introduction</h3><p>John Blogs respects the privacy of each Visitor."
削除する必要がある部分"::cck::34::/cck::<br>::introtext::"
は"34"
ID であるため変数なので、"::cck::203::/cck::<br>::introtext::"
私が試してみました:
$html='"<div class="about_us_item"><h2>Privacy Policy</h2><div>::cck::34::/cck::<br>::introtext::<h3>Introduction</h3><p>John Blogs respects the privacy of each Visitor."';
$regex='/::cck::*::/cck::<br>::introtext::/';
preg_match ($regex,$html,$matches);
echo $matches;
どんな助けでも大歓迎です。
ありがとう