>  기사  >  백엔드 개발  >  zend studio代码显示解决方法

zend studio代码显示解决方法

WBOY
WBOY원래의
2016-06-13 13:53:46835검색

zend studio代码显示

PHP code
<!--

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

-->


<title>
</title>
<script type="text/javascript">
    function xx(){
        var ii;
        ii = 'F';
        alert(ii);
        <?php
            $tt =1;
        if ($tt==1)
        {
        ?>
            var cc;
             cc = 'P';
          alert(cc);
        <?php
        }
        ?>
        var uu;
        uu = 'weiweipxbuu'
        alert(uu);
    }
</script>


<input type="button" value="Hit Me" onclick="xx()">


 


在js中嵌入php代码后,这段php代码后面的js代码字体都变成了黑色的。虽然没有错误但是不便宜阅读。

------解决方案--------------------
那种ide都没有办法很好的处理的这2种语法相交叉的使用,或者你可以这样用
HTML code




<title>
</title>
<script type="text/javascript">
    function xx(){
        var ii;
        ii = 'F';
        alert(ii);
        /**<?php
            $tt =1;
        if ($tt==1)
        {
        ?>**/
            var cc;
             cc = 'P';
          alert(cc);
        /**<?php
        }
        ?>**/
        var uu;
        uu = 'weiweipxbuu'
        alert(uu);
    }
</script>


<input type="button" value="Hit Me" onclick="xx()">


 <div class="clear">
                 
              
              
        
            </div>
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.