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-- XMLWriter: libxml2 XML Writer, membuffer, flush --EXTENSIONS-- xmlwriter --FILE--..

Decoded Output download

--TEST--
XMLWriter: libxml2 XML Writer, membuffer, flush
--EXTENSIONS--
xmlwriter
--FILE--
<?php

$xw = xmlwriter_open_memory();
xmlwriter_start_document($xw, '1.0', 'UTF-8');
xmlwriter_start_element($xw, "tag1");
xmlwriter_end_document($xw);

// Force to write and empty the buffer
echo xmlwriter_flush($xw, true);
?>
--EXPECT--
<?xml version="1.0" encoding="UTF-8"?>
<tag1/>

Did this file decode correctly?

Original Code

--TEST--
XMLWriter: libxml2 XML Writer, membuffer, flush
--EXTENSIONS--
xmlwriter
--FILE--
<?php

$xw = xmlwriter_open_memory();
xmlwriter_start_document($xw, '1.0', 'UTF-8');
xmlwriter_start_element($xw, "tag1");
xmlwriter_end_document($xw);

// Force to write and empty the buffer
echo xmlwriter_flush($xw, true);
?>
--EXPECT--
<?xml version="1.0" encoding="UTF-8"?>
<tag1/>

Function Calls

None

Variables

None

Stats

MD5 c9805f0f1603523266f80a71077e5ae0
Eval Count 0
Decode Time 90 ms