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, file buffer, flush --EXTENSIONS-- xmlwriter --FILE..
Decoded Output download
--TEST--
XMLWriter: libxml2 XML Writer, file buffer, flush
--EXTENSIONS--
xmlwriter
--FILE--
<?php
$doc_dest = '001.xml';
$xw = xmlwriter_open_uri($doc_dest);
xmlwriter_start_document($xw, '1.0', 'UTF-8');
xmlwriter_start_element($xw, "tag1");
xmlwriter_end_document($xw);
// Force to write and empty the buffer
$output_bytes = xmlwriter_flush($xw, true);
echo file_get_contents($doc_dest);
unset($xw);
unlink($doc_dest);
?>
--EXPECT--
<?xml version="1.0" encoding="UTF-8"?>
<tag1/>
Did this file decode correctly?
Original Code
--TEST--
XMLWriter: libxml2 XML Writer, file buffer, flush
--EXTENSIONS--
xmlwriter
--FILE--
<?php
$doc_dest = '001.xml';
$xw = xmlwriter_open_uri($doc_dest);
xmlwriter_start_document($xw, '1.0', 'UTF-8');
xmlwriter_start_element($xw, "tag1");
xmlwriter_end_document($xw);
// Force to write and empty the buffer
$output_bytes = xmlwriter_flush($xw, true);
echo file_get_contents($doc_dest);
unset($xw);
unlink($doc_dest);
?>
--EXPECT--
<?xml version="1.0" encoding="UTF-8"?>
<tag1/>
Function Calls
| None |
Stats
| MD5 | 799750d44b78471c843dedf8f1e4d458 |
| Eval Count | 0 |
| Decode Time | 96 ms |