php strip_tags函數怎麼用

2020-07-16 10:05:36
php strip_tags函數用於剝去字串中的HTML標籤,其語法是strip_tags(string,allow),引數string是必須,規定要檢查的字串,allow是可選,規定允許的標籤。

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函數怎麼用的詳細內容,更多請關注TW511.COM其它相關文章!