0

HTML Tag Completion with TAB on PHP Heredoc

Miguel Nunes fa 11 anys 0

If you use TAB to complete html tags inside php heredoc it does not work.


<?php

$string = <<<HTML

<html>

div.test ...

</html>

HTML;

?>