Rumah > Artikel > pembangunan bahagian belakang > Bagaimana untuk Menanggalkan Semua Tag HTML Kecuali Yang Tertentu dalam PHP?
Removing All HTML Tags Except Permitted Ones in PHP
Users frequently encounter the need to remove specific or all HTML tags from a string. However, a unique scenario arises when only certain tags are to be retained while all others are stripped. In PHP, the built-in strip_tags function provides a solution for this requirement.
Solution:
The strip_tags function allows you to select specific tags that should be exempted from removal. By passing a string of the permitted tags as the second argument, you can strip all tags except those specified:
<code class="php">$allowed_tags = '<code><p>'; $content = strip_tags($input, $allowed_tags);</code>
In this code:
and ).
Atas ialah kandungan terperinci Bagaimana untuk Menanggalkan Semua Tag HTML Kecuali Yang Tertentu dalam PHP?. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!