MOON
Server: Apache/2.2.31 (Unix) mod_ssl/2.2.31 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
System: Linux csr818.wilogic.com 2.6.18-419.el5xen #1 SMP Fri Feb 24 22:50:37 UTC 2017 x86_64
User: digitals (531)
PHP: 5.4.45
Disabled: NONE
Upload Files
File: //usr/local/ssl/share/doc/cpanel-php54-XML-Serializer-0.20.2/examples/serializeNullProperties.php
<?PHP
/**
 * This example demonstrates the use of
 * ignoreNull => true
 *
 * It can be used to serialize an indexed array
 * like ext/simplexml does, by using the name
 * of the parent tag, while omitting this tag.
 *
 * @author Stephan Schmidt <schst@php.net>
 */
error_reporting(E_ALL);

require_once 'XML/Serializer.php';

$options = array(
                    "indent"         => '    ',
                    "linebreak"      => "\n",
                );

$serializer = new XML_Serializer($options);

$object = new stdClass();
$object->foo = 'bar';
$object->bar = null;

$array = array(
                'foo' => 'bar',
                'bar' => null
            );

$result = $serializer->serialize($object);

if ($result === true) {
    echo "<pre>";
    echo htmlentities($serializer->getSerializedData());
    echo "</pre>";
}

$result = $serializer->serialize($array);

if ($result === true) {
    echo "<pre>";
    echo htmlentities($serializer->getSerializedData());
    echo "</pre>";
}

$serializer->setOption('ignoreNull', true);
$result = $serializer->serialize($object);

if ($result === true) {
    echo "<pre>";
    echo htmlentities($serializer->getSerializedData());
    echo "</pre>";
}

$result = $serializer->serialize($array);

if ($result === true) {
    echo "<pre>";
    echo htmlentities($serializer->getSerializedData());
    echo "</pre>";
}
?>