所以问题基本上就是自动问题。 我在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>
有没有办法解决这个问题?
答案 0 :(得分:0)
尝试将其更改为:
<div>
<?php
if(something){
echo "hello world" // I assume you want to print this line to the screen
}
?>
</div>