search for: xslvalueof

Displaying 1 result from an estimated 1 matches for "xslvalueof".

2015 Sep 24
0
php DOMDocument and entities
This is not CentOS specific but I hope someone here knows so I do not have to subscribe to another list. I'm using php DOMDocument to create an XSL that needs a non-breaking space between two values. Basically: $xslvalueof = $dom->createElement('xsl:value-of'); $xslvalueof->setAttribute('select', '../@month'); $caption->appendChild($xslvalueof); $nbsp = $dom->createTextNode(' '); $caption->appendChild($nbsp); $xslvalueof = $dom->createElement(&...