Home > 属性削除


PHPでHTMLタグから全ての属性を削除する方法

正規表現を使用する方法: 正規表現を使ってHTMLタグの属性を取り除くことができます。以下はその例です。<?php function removeAttributes($html) { $pattern = '/<([a-zA-Z0-9]+)(?: [^>]*)?>/'; // 開始タグのパターン $html = preg_replace_callback($pattern, function($matches) { return '<' . $matches[1] . '>'; // 属性を取り除いたタグを返す }, $ht>>More