亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

php和html標簽轉換的方法

發布時間:2020-08-15 10:32:16 來源:億速云 閱讀:171 作者:小新 欄目:編程語言

php和html標簽轉換的方法?這個問題可能是我們日常學習或工作經常見到的。希望通過這個問題能讓你收獲頗深。下面是小編給大家帶來的參考內容,讓我們一起來看看吧!

php html標簽轉換問題的解決辦法:1、使用“htmlentities()”函數將html標簽轉換成特殊字符;2、使用“html_entity_decode()”函數將htmlentities函數轉義過的字符串轉成html標簽。

php和html標簽轉換的方法

很多朋友在寫php的時候,難免會遇到需要將html標簽進行轉義存儲。比如存入數據庫、xml文件等。而存儲進去后,讀取出來則需要轉換成html輸出。網上有許多人編寫的轉換函數,很長很難懂。其實php早就自帶有這樣的函數。大可不必自己編寫。

下面分別介紹這兩個函數。

1.htmlentities()函數:

說明:將html標簽轉換成特殊字符。例如將<script>轉換成"&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;  

由于最近csdn的控件比較垃圾,請將上面的$apos改成單引號。---呼!

上面的語句執行后,將生成下面的結果

[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()函數

說明:將htmlentities()函數轉義過的字符串轉成html標簽。

例子:

[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  

轉載自頁面     http://www.cankaojishu.com/bcyy/82144.html

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

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

同江市| 长沙县| 肃宁县| 新昌县| 贡山| 隆尧县| 海盐县| 石台县| 荣成市| 海丰县| 十堰市| 黎平县| 江津市| 惠州市| 界首市| 体育| 晴隆县| 武宁县| 朝阳县| 大方县| 建德市| 松潘县| 安平县| 凉城县| 上饶市| 沾化县| 惠东县| 万年县| 南通市| 大石桥市| 青浦区| 施甸县| 碌曲县| 宽城| 昭觉县| 惠水县| 鸡东县| 沙湾县| 兰考县| 通道| 秦皇岛市|