php html標(biāo)簽轉(zhuǎn)換問題的解決辦法:1、使用“htmlentities()”函數(shù)將html標(biāo)簽轉(zhuǎn)換成特殊字符;2、使用“html_entity_decode()”函數(shù)將htmlentities函數(shù)轉(zhuǎn)義過的字符串轉(zhuǎn)成html標(biāo)簽。
成都創(chuàng)新互聯(lián)長期為上千家客戶提供的網(wǎng)站建設(shè)服務(wù),團(tuán)隊(duì)從業(yè)經(jīng)驗(yàn)10年,關(guān)注不同地域、不同群體,并針對不同對象提供差異化的產(chǎn)品和服務(wù);打造開放共贏平臺,與合作伙伴共同營造健康的互聯(lián)網(wǎng)生態(tài)環(huán)境。為寶興企業(yè)提供專業(yè)的網(wǎng)站設(shè)計(jì)制作、成都網(wǎng)站制作,寶興網(wǎng)站改版等技術(shù)服務(wù)。擁有十載豐富建站經(jīng)驗(yàn)和眾多成功案例,為您定制開發(fā)。
推薦:《PHP視頻教程》
很多朋友在寫php的時候,難免會遇到需要將html標(biāo)簽進(jìn)行轉(zhuǎn)義存儲。比如存入數(shù)據(jù)庫、xml文件等。而存儲進(jìn)去后,讀取出來則需要轉(zhuǎn)換成html輸出。網(wǎng)上有許多人編寫的轉(zhuǎn)換函數(shù),很長很難懂。其實(shí)php早就自帶有這樣的函數(shù)。大可不必自己編寫。
下面分別介紹這兩個函數(shù)。
1.htmlentities()函數(shù):說明:將html標(biāo)簽轉(zhuǎn)換成特殊字符。例如將<script>轉(zhuǎn)換成"<script>"
例子:
[PHP] view plaincopy
// An imaginary article submission from a bad user // it will redirect anyone to example.com if the code is run in a browser $userInput = "I am going to hax0r your site, hahaha! <script type='text/javascript'> window.location = 'http://www.example.com/' </script>'"; //Lets make it safer before we use it $userInputEntities = htmlentities($userInput); //Now we can display it echo $userInputEntities;由于最近c(diǎn)sdn的控件比較垃圾,請將上面的$apos改成單引號。---呼!
上面的語句執(zhí)行后,將生成下面的結(jié)果
[HTML] view plaincopy
I am going to hax0r your site, hahaha! <script type='text/javascript'> window.location = 'http://www.88web.org/' </script>' 2.html_entity_decode()函數(shù)說明:將htmlentities()函數(shù)轉(zhuǎn)義過的字符串轉(zhuǎn)成html標(biāo)簽。
例子:
[PHP] view plaincopy
$orig = "I'll /"walk/" the <b>dog</b> now"; $a = htmlentities($orig); $b = html_entity_decode($a); echo $a; // I will "walk" the <b>dog</b> now echo $b; // I will "walk" the <b>dog</b> now轉(zhuǎn)載自頁面 http://www.cankaojishu.com/bcyy/82144.html
網(wǎng)頁名稱:如何解決phphtml標(biāo)簽轉(zhuǎn)換問題
分享路徑:http://muchs.cn/article28/cghojp.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供云服務(wù)器、Google、面包屑導(dǎo)航、網(wǎng)站策劃、標(biāo)簽優(yōu)化、小程序開發(fā)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)