Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

--TEST-- DOMDocumentType: basic access to all properties. --CREDITS-- Eric Lee Stewart <er..

Decoded Output download

--TEST--
DOMDocumentType: basic access to all properties.
--CREDITS--
Eric Lee Stewart <[email protected]>
# TestFest Atlanta 2009-05-25
--EXTENSIONS--
dom
--FILE--
<?php
// Access publicId, systemId, name, internalSubset all with values.
$xml  = '<?xml version="1.0" encoding="UTF-8" ?>';
$xml .= '<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML//EN" "docbookx.dtd">';
$xml .= '<chapter>1</chapter>';
$doc = new DOMDocument();
$doc->loadXML($xml);
$doctype = $doc->doctype;
print "publicId: ".$doctype->publicId."
";
print "systemId: ".$doctype->systemId."
";
print "name: ".$doctype->name."
";
print "internalSubset: ".$doctype->internalSubset."
";


// Access entities and notations with values.
$xml  = '<?xml version="1.0" encoding="UTF-8" ?>';
$xml .= '<!DOCTYPE img [';
$xml .= '  <!ELEMENT img EMPTY>';
$xml .= '  <!ATTLIST img src ENTITY #REQUIRED>';
$xml .= '  <!ENTITY logo SYSTEM "http://www.xmlwriter.net/logo.gif" NDATA gif>';
$xml .= '  <!NOTATION gif PUBLIC "gif viewer">';
$xml .= ']>';
$xml .= '<img src="logo"/>';
$doc = new DOMDocument();
$doc->loadXML($xml);
$doctype = $doc->doctype;
$entities = $doctype->entities;
$entity = $entities->item(0);
print 'entity: '.$entity->nodeName."
";
$notations = $doctype->notations;
$notation = $notations->item(0);
print 'notation: '.$notation->nodeName."
";
?>
--EXPECT--
publicId: -//OASIS//DTD DocBook XML//EN
systemId: docbookx.dtd
name: chapter
internalSubset: 
entity: logo
notation: gif

Did this file decode correctly?

Original Code

--TEST--
DOMDocumentType: basic access to all properties.
--CREDITS--
Eric Lee Stewart <[email protected]>
# TestFest Atlanta 2009-05-25
--EXTENSIONS--
dom
--FILE--
<?php
// Access publicId, systemId, name, internalSubset all with values.
$xml  = '<?xml version="1.0" encoding="UTF-8" ?>';
$xml .= '<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML//EN" "docbookx.dtd">';
$xml .= '<chapter>1</chapter>';
$doc = new DOMDocument();
$doc->loadXML($xml);
$doctype = $doc->doctype;
print "publicId: ".$doctype->publicId."\n";
print "systemId: ".$doctype->systemId."\n";
print "name: ".$doctype->name."\n";
print "internalSubset: ".$doctype->internalSubset."\n";


// Access entities and notations with values.
$xml  = '<?xml version="1.0" encoding="UTF-8" ?>';
$xml .= '<!DOCTYPE img [';
$xml .= '  <!ELEMENT img EMPTY>';
$xml .= '  <!ATTLIST img src ENTITY #REQUIRED>';
$xml .= '  <!ENTITY logo SYSTEM "http://www.xmlwriter.net/logo.gif" NDATA gif>';
$xml .= '  <!NOTATION gif PUBLIC "gif viewer">';
$xml .= ']>';
$xml .= '<img src="logo"/>';
$doc = new DOMDocument();
$doc->loadXML($xml);
$doctype = $doc->doctype;
$entities = $doctype->entities;
$entity = $entities->item(0);
print 'entity: '.$entity->nodeName."\n";
$notations = $doctype->notations;
$notation = $notations->item(0);
print 'notation: '.$notation->nodeName."\n";
?>
--EXPECT--
publicId: -//OASIS//DTD DocBook XML//EN
systemId: docbookx.dtd
name: chapter
internalSubset: 
entity: logo
notation: gif

Function Calls

None

Variables

$xml <?xml version="1.0" encoding="UTF-8" ?><!DOCTYPE chapter PUB..

Stats

MD5 28a55fec69f97b6db18c932f1cf5fd21
Eval Count 0
Decode Time 84 ms