Prv8 Shell
Server : Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4
System : Linux server.jackjohnson.com 2.6.32-279.5.2.el6.x86_64 #1 SMP Fri Aug 24 01:07:11 UTC 2012 x86_64
User : jackjohn ( 502)
PHP Version : 5.3.17
Disable Function : NONE
Directory :  /usr/share/doc/cpanel-php54-XML-Serializer-0.20.2/examples/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //usr/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>";
}
?>

haha - 2025