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 に答える