AtomParser::cdata( $parser,  $data )

In this article

Source

function cdata($parser, $data) {
    $this->_p("data: #" . str_replace(array("\n"), array("\\n"), trim($data)) . "#");
    if(!empty($this->in_content)) {
        array_push($this->in_content, $data);
    }
}

User Contributed Notes

You must log in before being able to contribute a note or feedback.