php中的strip_tags函數的用法:【strip_tags(string,allow)】。 strip_tags函數用於剝去字串中的HTML、XML以及PHP的標籤。
php strip_tags函數用於剝去字串中的HTML標籤,其語法為strip_tags(string,allow),參數string是必須,規定要檢查的字串,allow是可選,規定允許的標籤。
(相關推薦:php訓練)
php strip_tags函數怎麼用?
作用:剝去字串中的HTML 標籤
語法:
strip_tags(string,allow)
參數:
string 必須,規定要檢查的字符串。
allow 可選,規定允許的標籤。這些標籤不會被刪除。
說明:strip_tags() 函數剝除字串中的 HTML、XML 、 PHP 的標籤。此函數總是會剝離 HTML 註解。這一點無法透過 allow 參數改變。該函數是二進制安全的。
php strip_tags()函數使用範例1:
<?php echo strip_tags("<p>Hello <b>world!</b></p>","<b>"); ?>
輸出:
Hello world
php strip_tags()函數使用範例2:
<?php $i = "<b>hello<i> php.cn</i></b>"; $j = strip_tags($i,'<i>'); echo $j; ?>
輸出:
hello <i>php.cn</i>
以上是php中的strip_tags函數怎麼用的詳細內容。更多資訊請關注PHP中文網其他相關文章!