Feature: Code completion and intellisense for inline HTML with attributes in PHP
Sample code:
Code: Select all
<?php
$NameMarker="%NAME%";
$Name="Joy";
$Sentence="My name is {$NameMarker}";
print "
<div id=\"MyNameSentenceElement\" class=\"MyNameSentence\">
".str_replace($NameMarker, $Name, $Sentence)."
</div>
";
?>