Up until recently I have been using the xslt functions under PHP4 to transform my XML files. I have upgraded to PHP5 and using the XSLTProcessor class to replace the xslt function calls. However, the 'disable-output-escaping' attribute is not working (or being ignored) when using the XSLTProcessor method calls.
<xsl:value-of select="DocData/doc_body" disable-output-escaping="yes" />
Has anybody had a similar experience? How can I fix this in PHP5?
😕