Not good enough
PHP makes it easy to output invalid tagsoup, but hard to ensure that (X)HTML is valid and well-formed.
You have to remember to add htmlspecialchars() every time you output data in HTML. If you forget it, the site will appear to work fine 99% of the time, but may be vulnerable to XSS and CSRF attacks (not to mention that it will be ill-formed).
There are plenty of common constructs that are easy to get wrong – curly braces of ifs get lost in the crowd of tags. When you optionally wrap something in an element you have to repeat condition for opening and closing tag.
PHP tags inside HTML tags look awful.
My favourite solution to this mess is PHPTAL. It's aware aware of X(HT)ML syntax and checks it for you. It also automatically adds entities everywhere – you don't have to remember about this all the time (like in PHP or Smarty).
The syntax is very clean and concise, e.g.:
<ul tal:condition="elements">
<li tal:repeat="el elements" tal:content="el/name" />
</ul>
It will hide entire <ul> if variable elements is empty. Otherwise it will create one <li> for each array element, and its content will be properly escaped.
<b tal:omit-tag="not_bold">this text may be bold</b>
If not_bold is true, then opening and closing tag will be removed.
