正規表現 PHPで特定のタグをけしたい
■やりたいこと:
PHPにて、以下のコードを含む文字列から <script type="text/javascript">
から</script>
までを削除したい
ただし
・<!-- Add Google Analytics Tag // -->
が必ずある保証はない
・このコードの上下には <script type=
や </script>
を含む文字列が複数ある
・google-analytics.com
の文字列はこの部分にのみ存在する とする
■やったこと
preg_match('{<script type(.*?)analytics}s', $data, $result);
で取得すると、一番最初の <script type
から検索に引っかかる。
<!-- Add Google Analytics Tag // -->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-********-1']);
_gaq.push(['_trackPageview']);
_gaq.push(['_setCookiePath', '/']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<!-- // Add Google Analytics Tag -->