PHP如何去除HTML標籤

2021-06-06 22:12:33 字數 1038 閱讀 6435

方法1:

直接取出想要取出的標記

<?php

//取出br標記

function strip($str)

?>

方法2.

php 中有個 strip_tags 函式可以方便地去除 html 標籤。

echo strip_tags(「helloworld」); // 去除 html、xml 以及 php 的標籤。

對於非標準的 html **也能正確的去除:

echo strip_tags(「\」>cftea」); //輸出 cftea

在php中可以使用strip_tags函式去除html標籤,看下面示例:

<?php

$str = 『wwwdreamdu

.com』;

echo(htmlspecialchars($str).」

」);echo(strip_tags($str));

?>

參考資料:

方法3.

strtr() 函式轉換字串中特定的字元。

strtr(string,from,to)

或者

strtr(string,array)
引數

描述string1

必需。規定要轉換的字串。

from

必需(除非使用陣列)。規定要改變的字元。

to必需(除非使用陣列)。規定要改變為的字元。

array

必需(除非使用 from 和 to)。乙個陣列,其中的鍵是原始字元,值是目標字元。

例子1:

<?php

echostrtr("hilla warld","ia","eo");

?>

例子2:
<?php

$arr = array("hello" => "hi", "world" => "earth");

echostrtr("hello world",$arr);

?>

php 去除html標籤 和 css樣式

content preg replace i content content preg replace a i content content preg replace i content content preg replace div i content content preg replace...

sql去除html標籤

分類 sql舉報 sql資料庫sql函式 1 建立函式 sql view plain copy create function dbo clearhtml maco varchar 8000 returns varchar 8000 as begin declare i int while 1 1 ...

php 只提取文字,去除html標籤樣式和轉義字元

只提取文字,去除html標籤樣式和轉義字元。主要用於提取富文字編輯的內容。把html實體標籤轉換為字元 html string htmlspecialchars decode content 將空格替換成空 content str replace html string 函式剝去字串中的 html ...