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

WBOY
Libérer: 2016-06-13 13:32:15
original
804 Les gens l'ont consulté

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

PHP code
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

-->$a = "<script>window.location.href='http://xxx.com';</script>";
Copier après la connexion


在网页上是直接显示但不执行js:
Assembly code
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--><script>window.location.href='http://xxx.com';</script>
Copier après la connexion


查看html源文件是这样:
HTML code
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--><script>window.location.href='http://xxx.com';</script>
Copier après la connexion


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>
Copier après la connexion
Étiquettes associées:
source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal
À propos de nous Clause de non-responsabilité Sitemap
Site Web PHP chinois:Formation PHP en ligne sur le bien-être public,Aidez les apprenants PHP à grandir rapidement!