nwalke
nwalke

Reputation: 3209

Get Netbeans to recogzine HTML tags in PHP HEREDOC

I've tried Googling this, but I cannot find any information on it. Is there a way to get Netbeans to recognize the HTML tags inside HEREDOC as HTML tags? For example, if I do:

echo <<<EOHTML
<table>
  <tr></tr>
EOHTML;

Netbeans does not complain about this or say that you probably want to close the table tag as it would in the HTML editor. Is there a way to enable this?

Upvotes: 2

Views: 1658

Answers (1)

Matt
Matt

Reputation: 7040

This is a documented bug in NetBeans: http://netbeans.org/bugzilla/show_bug.cgi?id=125684

Upvotes: 2

Related Questions