Sublime Text 2 php endforeach,endif和endwhile弄糊涂widh html结束标记

时间:2013-05-11 07:24:45

标签: php sublimetext2 auto-indent

所以问题基本上就是自动问题。 我在f12

的自动缩进的用户配置中使用它

{ "keys": ["f12"], "command": "reindent", "args": {"single_line": false} }

在带有html代码和php代码的somefile.php中

<div>
    <?php if(something):?>
         hello world
    <?php endif;?>
</div>

F12导致

<div>
    <?php if(something):?>
        hello world
<?php endif;?> //sublime is thinking the endif is a closing html tag.
</div>

有没有办法解决这个问题?

1 个答案:

答案 0 :(得分:0)

尝试将其更改为:

<div>
<?php 
    if(something){
      echo "hello world" // I assume you want to print this line to the screen
    }
 ?>
</div>