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

WBOY
Release: 2016-06-13 13:41:20
Original
1418 people have browsed it

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>
Copy after login
Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!