溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

php和html標(biāo)簽轉(zhuǎn)換的方法

發(fā)布時(shí)間:2020-08-15 10:32:16 來(lái)源:億速云 閱讀:171 作者:小新 欄目:編程語(yǔ)言

php和html標(biāo)簽轉(zhuǎn)換的方法?這個(gè)問(wèn)題可能是我們?nèi)粘W(xué)習(xí)或工作經(jīng)常見(jiàn)到的。希望通過(guò)這個(gè)問(wèn)題能讓你收獲頗深。下面是小編給大家?guī)?lái)的參考內(nèi)容,讓我們一起來(lái)看看吧!

php html標(biāo)簽轉(zhuǎn)換問(wèn)題的解決辦法:1、使用“htmlentities()”函數(shù)將html標(biāo)簽轉(zhuǎn)換成特殊字符;2、使用“html_entity_decode()”函數(shù)將htmlentities函數(shù)轉(zhuǎn)義過(guò)的字符串轉(zhuǎn)成html標(biāo)簽。

php和html標(biāo)簽轉(zhuǎn)換的方法

很多朋友在寫(xiě)php的時(shí)候,難免會(huì)遇到需要將html標(biāo)簽進(jìn)行轉(zhuǎn)義存儲(chǔ)。比如存入數(shù)據(jù)庫(kù)、xml文件等。而存儲(chǔ)進(jìn)去后,讀取出來(lái)則需要轉(zhuǎn)換成html輸出。網(wǎng)上有許多人編寫(xiě)的轉(zhuǎn)換函數(shù),很長(zhǎng)很難懂。其實(shí)php早就自帶有這樣的函數(shù)。大可不必自己編寫(xiě)。

下面分別介紹這兩個(gè)函數(shù)。

1.htmlentities()函數(shù):

說(shuō)明:將html標(biāo)簽轉(zhuǎn)換成特殊字符。例如將<script>轉(zhuǎn)換成"&lt;script&gt;"

例子:

[PHP] view plaincopy

  1. // An imaginary article submission from a bad user  
  2. //  it will redirect anyone to example.com if the code is run in a browser  
  3. $userInput = "I am going to hax0r your site, hahaha!  
  4.    <script type=&apos;text/javascript&apos;>  
  5.    window.location = &apos;http://www.example.com/&apos;  
  6.    </script>&apos;";  
  7.      
  8. //Lets make it safer before we use it  
  9. $userInputEntities = htmlentities($userInput);  
  10.  
  11. //Now we can display it  
  12. echo $userInputEntities;  

由于最近c(diǎn)sdn的控件比較垃圾,請(qǐng)將上面的$apos改成單引號(hào)。---呼!

上面的語(yǔ)句執(zhí)行后,將生成下面的結(jié)果

[HTML] view plaincopy

  1. I am going to hax0r your site, hahaha!  
  2.    <script type=&apos;text/javascript&apos;>  
  3.    window.location = &apos;http://www.88web.org/&apos;  
  4.    </script>&apos;  

2.html_entity_decode()函數(shù)

說(shuō)明:將htmlentities()函數(shù)轉(zhuǎn)義過(guò)的字符串轉(zhuǎn)成html標(biāo)簽。

例子:

[PHP] view plaincopy

  1. $orig = "I&apos;ll /"walk/" the <b>dog</b> now";  
  2.  
  3. $a = htmlentities($orig);  
  4.  
  5. $b = html_entity_decode($a);  
  6.  
  7. echo $a; // I will "walk" the <b>dog</b> now  
  8.  
  9. echo $b; // I will "walk" the <b>dog</b> now  

轉(zhuǎn)載自頁(yè)面     http://www.cankaojishu.com/bcyy/82144.html

感謝各位的閱讀!看完上述內(nèi)容,你們對(duì)php和html標(biāo)簽轉(zhuǎn)換的方法大概了解了嗎?希望文章內(nèi)容對(duì)大家有所幫助。如果想了解更多相關(guān)文章內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI