<p>
$text = '<p>
/ # Start Pattern < # Match '<' at beginning of tags ( # Start Capture Group - Tag Name [a-z] # Match 'a' through 'z' [a-z0-9]* # Match 'a' through 'z' or '0' through '9' zero or more times ) # End Capture Group [^>]*? # Match anything other than '>', Zero or More times, not-greedy (wont eat the /) (\/?) # Capture Group - '/' if it is there > # Match '>' /is # End Pattern - Case Insensitive & Multi-line ability
<p> hello
以上が正規表現を使用して HTML タグから属性を効率的に削除するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。