主頁 > 知識(shí)庫 > PHP html_entity_decode()函數(shù)講解

PHP html_entity_decode()函數(shù)講解

熱門標(biāo)簽:浙江外呼電話系統(tǒng)軟件 十堰ai電話機(jī)器人效果怎么樣 銀川ai電話機(jī)器人 上海公司外呼系統(tǒng)線路 安陽自動(dòng)外呼系統(tǒng)價(jià)格是多少 臨沂智能電銷機(jī)器人軟件 芒果電銷機(jī)器人 電梯外呼線路板維修視頻 地圖標(biāo)注風(fēng)向標(biāo)

PHP html_entity_decode() 函數(shù)

實(shí)例

把 HTML 實(shí)體轉(zhuǎn)換為字符:

?php 
$str = "lt;copy; W3CSccedil;hdeg;deg;brvbar;sect;gt;"; 
echo html_entity_decode($str); 
?>

上面代碼的 HTML 輸出如下(查看源代碼):

!DOCTYPE html> 
html> 
body> 
© W3CSçh°°¦§> 
/body> 
/html>

上面代碼的瀏覽器輸出如下:

© W3CSçh°°¦§>

定義和用法

html_entity_decode() 函數(shù)把 HTML 實(shí)體轉(zhuǎn)換為字符。

html_entity_decode() 函數(shù)是htmlentities() 函數(shù)的反函數(shù)。

語法

html_entity_decode( _string,flags,character-se_ t)

實(shí)例 1

把一些 HTML 實(shí)體轉(zhuǎn)換為字符:

?php 
$str = "Jane  #039;Tarzan#039;"; 
echo html_entity_decode($str, ENT_COMPAT); // Will only convert double quotes 
echo "br>"; 
echo html_entity_decode($str, ENT_QUOTES); // Converts double and single
quotes 
echo "br>"; 
echo html_entity_decode($str, ENT_NOQUOTES); // Does not convert any quotes 
?>

上面代碼的 HTML 輸出如下(查看源代碼):

!DOCTYPE html> 
html> 
body> 
Jane  #039;Tarzan#039;br> 
Jane  'Tarzan'br> 
Jane  #039;Tarzan#039; 
/body> 
/html>

上面代碼的瀏覽器輸出如下:

Jane 'Tarzan' 
Jane 'Tarzan' 
Jane 'Tarzan'

實(shí)例 2

通過使用西歐字符集,把一些 HTML 實(shí)體轉(zhuǎn)換為字符:

?php 
$str = "My name is Oslash;yvind Aring;sane. I#039;m Norwegian."; 
echo html_entity_decode($str, ENT_QUOTES, "ISO-8859-1"); 
?>

The HTML output of the code above will be (View Source):

!DOCTYPE html> 
html> 
body> 
My name is Øyvind Åsane. I'm Norwegian. 
/body> 
/html>

上面代碼的瀏覽器輸出如下:

My name is Øyvind Åsane. I'm Norwegian.

總結(jié)

以上就是這篇文章的全部?jī)?nèi)容了,希望本文的內(nèi)容對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,謝謝大家對(duì)腳本之家的支持。如果你想了解更多相關(guān)內(nèi)容請(qǐng)查看下面相關(guān)鏈接

您可能感興趣的文章:
  • PHP微信發(fā)送推送消息亂碼的解決方法
  • PHP刪除數(shù)組中特定元素的兩種方法
  • PHP實(shí)時(shí)統(tǒng)計(jì)中文字?jǐn)?shù)和區(qū)別
  • PHP正則判斷一個(gè)變量是否為正整數(shù)的方法
  • PHP正則驗(yàn)證字符串是否為數(shù)字的兩種方法并附常用正則
  • PHP判斷是否是微信打開還是瀏覽器打開的方法
  • asp函數(shù)split()對(duì)應(yīng)php函數(shù)explode()
  • PHP htmlentities()函數(shù)用法講解
  • PHP hex2bin()函數(shù)用法講解
  • PHP中rename()函數(shù)的妙用講解

標(biāo)簽:武威 遂寧 徐州 寧夏 常州 荊門 吐魯番 遵義

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《PHP html_entity_decode()函數(shù)講解》,本文關(guān)鍵詞  PHP,html,entity,decode,函數(shù),;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《PHP html_entity_decode()函數(shù)講解》相關(guān)的同類信息!
  • 本頁收集關(guān)于PHP html_entity_decode()函數(shù)講解的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章