parent root
PHP: Examples - Manual
PHP 7.2.23 Release Announcement

Examples

Table of Contents

add a noteadd a note

User Contributed Notes 1 note

up
1
dormilich at netscape dot net
10 years ago
If you want to use the WDDX 1.0 DTD for validation (http://www.openwddx.org/downloads/dtd/wddx_dtd_10.txt) check that you define the comment as element, not as attribute.

<?xml version="1.0" encoding="iso-8859-1" ?>
<wddxPacket version='1.0'>
    <header>
        <comment>PHP</comment>
    </header>
    <data><!-- WDDX serialized data --></data>
</wddxPacket>
To Top
parent root