ホームページ  >  記事  >  バックエンド開発  >  php有办法实现像这样输出js代码?该怎么解决

php有办法实现像这样输出js代码?该怎么解决

WBOY
WBOYオリジナル
2016-06-13 10:21:50719ブラウズ

php有办法实现像这样输出js代码?
比如有个变量值是这样的

PHP code
<!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->$a = "<script>window.location.href='http://xxx.com';</script>";


在网页上是直接显示但不执行js:
Assembly code
<!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--><script>window.location.href='http://xxx.com';</script>


查看html源文件是这样:
HTML code
<!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--><script>window.location.href='http://xxx.com';</script>


php有这种函数?还是要怎么转换?

------解决方案--------------------
echo htmlentities($a);
------解决方案--------------------
你这个是网页表单提交的吧?提交处理的代码里有过滤。
------解决方案--------------------
PHP code
$a = "<script>window.location.href='http://xxx.com';</script>";$b = htmlspecialchars($a);echo $b;//result: <script>window.location.href='http://xxx.com';</script> //source: <script>window.location.href='http://xxx.com';</script><div class="clear">
                 
              
              
        
            </div>
声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。