| Path : /www/hosting/oltv.cz/www/class/system/ |
| Current File : /www/hosting/oltv.cz/www/class/system/SimpleXMLExtended.php |
<?php
class SimpleXMLExtended extends SimpleXMLElement {
public function addCData($cdata_text) {
$node = dom_import_simplexml($this);
$no = $node->ownerDocument;
$node->appendChild($no->createCDATASection($cdata_text));
}
}