1

所以问题基本上是自动缩进。我在用户配置中使用它在 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>

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

4

1 回答 1

0

尝试将其更改为:

<div>
<?php 
    if(something){
      echo "hello world" // I assume you want to print this line to the screen
    }
 ?>
</div>
于 2013-05-11T07:32:02.823 回答