Home  >  Article  >  Backend Development  >  php输出html时转义,该怎么处理

php输出html时转义,该怎么处理

WBOY
WBOYOriginal
2016-06-13 13:41:201420browse

php输出html时转义
比如: php输出html时转义,该怎么处理
输出后: 类似这样的,
我是输出到XML,然后flash读取的,请高手帮忙

------解决方案--------------------
htmlentities
------解决方案--------------------
htmlentities
------解决方案--------------------
htmlentities 

------解决方案--------------------

PHP code

$str = "A 'quote' is <b>bold</b>";
// Outputs: A 'quote' is <b>bold</b>
echo htmlentities($str);


$new = htmlspecialchars("<a href="test">Test</a>", ENT_QUOTES);
echo $new; // <a href=&#039;test&#039;>Test</a> <div class="clear">
                 
              
              
        
            </div>
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn