PHPverse 2025

Voting

: three plus three?
(Example: nine)

The Note You're Voting On

l [DOT] anzinger [AT] gmail [DOT] com
17 years ago
If you don't want that the CDATA values get escaped, just load the XML with LIBXML_NOCDATA as an 3rd argument.

Note: A PHP version >= 5.1.0 is required for this to work.

Example:

<?php simplexml_load_file('xmldatei.xml', null, LIBXML_NOCDATA); ?>

<< Back to user notes page

To Top