[PHP]html标签与实体之间互换

2015-10-23 写技术

PHP中的几个函数,实现实体与标签之间的互换。记录一下,具体用法就不贴了。

 

htmlspecialchars_decode() 函数把预定义的 HTML 实体转换为字符。
会被解码的 HTML 实体是:
& 解码成 & (和号)
" 解码成 " (双引号)
' 解码成 ' (单引号)
< 解码成 < (小于)
> 解码成 > (大于)
htmlspecialchars_decode() 函数是 htmlspecialchars() 函数的反函数。

html_entity_decode() 函数把 HTML 实体转换为字符。
html_entity_decode() 函数是 htmlentities() 函数的反函数。

htmlspecialchars_decode(string,flags)

标签: php

发表评论:

Powered by anycle 湘ICP备15001973号-1