world!");】。"/> world!");】。">
php去掉i標籤的方法是,在php程式碼中使用strip_tags函數,並將帶有i標籤的程式碼當作參數就可以了,例如【strip_tags("Hello world!");】。
本文操作環境:windows10系統、php 7.3、thinkpad t480電腦。
在工作中我們可能會需要移除某些HTML標籤,例如i標籤、b標籤等等。那我們該如何去除這些HTML標籤呢?
其實想要移除HTML標籤是很簡單的,因為PHP本身已經提供了現有的函數,例如strip_tags函數。下面就讓我們來介紹下strip_tags函數。
strip_tags() 函數用來剝去字串中的 HTML、XML 以及 PHP 的標籤。
語法如下:
strip_tags(string,allow)
參數解釋如下:
#string 必要。規定要檢查的字串。
allow 可選。規定允許的標籤。這些標籤不會被刪除。
程式碼範例:
<!DOCTYPE html> <html> <body> <?php echo strip_tags("Hello <b>world!</b>"); ?> <p>This function strips a string from HTML, XML, and PHP tags. In this example, the <b> tag gets stripped.</p> </body> </html>
我們一起來看下運行效果:
相關推薦:php影片教學
以上是php如何去掉i標籤的詳細內容。更多資訊請關注PHP中文網其他相關文章!