Sublime Text 2 php endforeach, endif, and endwhile get confused widh html closing tag

StackOverflow https://stackoverflow.com/questions/16494841

  •  21-04-2022
  •  | 
  •  

Вопрос

So the problem is basically the autoindent. I use this in the user configuration for auto indent on f12

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

And in a somefile.php with html code and php code

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

F12 results in

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

Is there a way to fix this?

Это было полезно?

Решение

try to change it to:

<div>
<?php 
    if(something){
      echo "hello world" // I assume you want to print this line to the screen
    }
 ?>
</div>
Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top