PHP 8.5.0 Beta 1 available for testing

Voting

: max(nine, two)?
(Example: nine)

The Note You're Voting On

loathsome
18 years ago
Here's a function that will create a CDATA-section around a string coming from SimpleXML.

<?php
function sxml_cdata($path, $string){
$dom = dom_import_simplexml($path);
$cdata = $dom->ownerDocument->createCDATASection($string);
$dom->appendChild($cdata);
}
?>

<< Back to user notes page

To Top