<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 중국어 웹사이트의 기타 관련 기사를 참조하세요!