3v4l.org

run code in 300+ PHP versions simultaneously
<?php /** * Example: Decode an Input Stream with PHP filters * * decode-input-stream-example.php * * @link https://gist.github.com/hakre/d34239bb237c50e728fd * @link http://stackoverflow.com/q/25051578/367456 */ # given a file which contains hex-encoded binary sequences that are partially disruped by US-ASCII control characters $transport = '<?xml version=\x221.0\x22 encoding=\x22UTF-8\x22?> \x0A<issues>\x0A\x09<issue id=\x225863\x22 found=\x221\x22>\xD0\x9F\xD0\xBE \xD0\xBD\xD0\xBE\xD0\xBC\xD0\xB5\xD1\x80\xD1\x83 \xD1\x81\xD1\x87\xD0\xB 5\xD1\x82\xD0\xB0 19479 \xD0\xBD\xD0\xB0\xD0\xB9\xD0\xB4\xD0\xB5\xD0\xBD\xD0\xBE:\x0A\xD0\x97\xD0\xB0\xD0\xBA\xD0\xB0\xD0\xB7 \xD0\xBF\xD0\xBE\xD0\xBA\xD1\x83\xD0\xBF\xD0\xB0\xD1\x82\xD0\xB5\xD0\xBB\xD1\x8F 0000015597 \xD0\xBE...</issue></issues>'; $file = 'data://text/plain;base64,' . base64_encode($transport); # registering two filters, one to remove control characters, the other to decode hex-sequences stream_filter_register('filter.controlchars', 'ControlCharsFilter'); stream_filter_register('decode.hexsequences', 'HexDecodeFilter'); # allows to chain those filters and to obtain the decoded (raw) data on-the-fly $filters = 'filter.controlchars/decode.hexsequences'; $xml = simplexml_load_file("php://filter/read=$filters/resource=" . $file); echo "isseu id: ", $xml->issue['id'], "\n"; $xml->asXML('php://stdout'); /** * Class ReadFilter */ abstract class ReadFilter extends php_user_filter { function filter($in, $out, &$consumed, $closing) { while ($bucket = stream_bucket_make_writeable($in)) { $bucket->data = $this->apply($bucket->data); $consumed += $bucket->datalen; stream_bucket_append($out, $bucket); } return PSFS_PASS_ON; } abstract function apply($string); } /** * Class ControlCharsFilter */ class ControlCharsFilter extends ReadFilter { function apply($string) { return preg_replace('~[\x00-\x1f]+~', '', $string); } } /** * Class HexDecodeFilter */ class HexDecodeFilter extends ReadFilter { function apply($string) { return preg_replace_callback( '/\\\\x([A-F0-9]{2})/i', 'self::decodeHexMatches' , $string ); } private static function decodeHexMatches($matches) { return hex2bin($matches[1]); } }
Output for 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
Deprecated: Return type of ReadFilter::filter($in, $out, &$consumed, $closing) should either be compatible with php_user_filter::filter($in, $out, &$consumed, bool $closing): int, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /in/IO6Ll on line 33 Deprecated: Use of "self" in callables is deprecated in /in/IO6Ll on line 59 isseu id: 5863 <?xml version="1.0" encoding="UTF-8"?> <issues> <issue id="5863" found="1">По номеру счета 19479 найдено: Заказ покупателя0000015597 о...</issue></issues>
Output for 8.1.0 - 8.1.28
Deprecated: Return type of ReadFilter::filter($in, $out, &$consumed, $closing) should either be compatible with php_user_filter::filter($in, $out, &$consumed, bool $closing): int, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /in/IO6Ll on line 33 isseu id: 5863 <?xml version="1.0" encoding="UTF-8"?> <issues> <issue id="5863" found="1">По номеру счета 19479 найдено: Заказ покупателя0000015597 о...</issue></issues>
Output for 5.4.0 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.40, 7.0.0 - 7.0.33, 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30
isseu id: 5863 <?xml version="1.0" encoding="UTF-8"?> <issues> <issue id="5863" found="1">По номеру счета 19479 найдено: Заказ покупателя0000015597 о...</issue></issues>
Output for 5.3.0 - 5.3.29
Fatal error: Call to undefined function hex2bin() in /in/IO6Ll on line 66
Process exited with code 255.
Output for 5.2.2 - 5.2.17
Fatal error: Cannot call method self::decodeHexMatches() or method does not exist in /in/IO6Ll on line 62
Process exited with code 255.
Output for 5.2.0 - 5.2.1
Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: preg_replace_callback(): Unable to call custom replacement function in /in/IO6Ll on line 62 Warning: simplexml_load_file(): php://filter/read=filter.controlchars/decode.hexsequences/resource=data://text/plain;base64,PD94bWwgdmVyc2lvbj1ceDIyMS4wXHgyMiBlbmNvZGluZz1ceDIyVVRGLThceDIyPz4KXHgwQTxpc3N1ZXM+XHgwQVx4MDk8aXNzdWUgaWQ9XHgyMjU4NjNceDIyIGZvdW5kPVx4MjIxXHgyMj5ceEQwXHg5Rlx4RDBceEJFIFx4RDBceEJEXHhEMFx4QkVceEQwXHhCQ1x4RDBceEI1XHhEMVx4ODBceEQxXHg4MyBceEQxXHg4MVx4RDFceDg3XHhEMFx4Qgo1XHhEMVx4ODJceEQwXHhCMCAxOTQ3OSBceEQwXHhCRFx4RDBceEIwXHhEMFx4QjlceEQwXHhCNFx4RDBceEI1XHhEMFx4QkRceEQwXHhCRTpceDBBXHhEMFx4OTdceEQwXHhCMFx4RDBceEJBXHhEMFx4QjBceEQwXHhCNyBceEQwXHhCRlx4RDBceEJFXHhEMFx4QkFceEQxXHg4M1x4RDBceEJGXHhEMFx4QjBceEQxXHg4Mlx4RDBceEI1XHhEMFx4QkJceEQxXHg4RgowMDAwMDE1NTk3IFx4RDBceEJFLi4uPC9pc3N1ZT48L2lzc3Vlcz4=:1: parser error : String not started expecting ' or " in /in/IO6Ll on line 24 Warning: simplexml_load_file(): <?xml version=\x221.0\x22 encoding=\x22UTF-8\x22?>\x0A<issues>\x0A\x09<issue id= in /in/IO6Ll on line 24 Warning: simplexml_load_file(): ^ in /in/IO6Ll on line 24 Warning: simplexml_load_file(): php://filter/read=filter.controlchars/decode.hexsequences/resource=data://text/plain;base64,PD94bWwgdmVyc2lvbj1ceDIyMS4wXHgyMiBlbmNvZGluZz1ceDIyVVRGLThceDIyPz4KXHgwQTxpc3N1ZXM+XHgwQVx4MDk8aXNzdWUgaWQ9XHgyMjU4NjNceDIyIGZvdW5kPVx4MjIxXHgyMj5ceEQwXHg5Rlx4RDBceEJFIFx4RDBceEJEXHhEMFx4QkVceEQwXHhCQ1x4RDBceEI1XHhEMVx4ODBceEQxXHg4MyBceEQxXHg4MVx4RDFceDg3XHhEMFx4Qgo1XHhEMVx4ODJceEQwXHhCMCAxOTQ3OSBceEQwXHhCRFx4RDBceEIwXHhEMFx4QjlceEQwXHhCNFx4RDBceEI1XHhEMFx4QkRceEQwXHhCRTpceDBBXHhEMFx4OTdceEQwXHhCMFx4RDBceEJBXHhEMFx4QjBceEQwXHhCNyBceEQwXHhCRlx4RDBceEJFXHhEMFx4QkFceEQxXHg4M1x4RDBceEJGXHhEMFx4QjBceEQxXHg4Mlx4RDBceEI1XHhEMFx4QkJceEQxXHg4RgowMDAwMDE1NTk3IFx4RDBceEJFLi4uPC9pc3N1ZT48L2lzc3Vlcz4=:1: parser error : Malformed declaration expecting version in /in/IO6Ll on line 24 Warning: simplexml_load_file(): <?xml version=\x221.0\x22 encoding=\x22UTF-8\x22?>\x0A<issues>\x0A\x09<issue id= in /in/IO6Ll on line 24 Warning: simplexml_load_file(): ^ in /in/IO6Ll on line 24 Warning: simplexml_load_file(): php://filter/read=filter.controlchars/decode.hexsequences/resource=data://text/plain;base64,PD94bWwgdmVyc2lvbj1ceDIyMS4wXHgyMiBlbmNvZGluZz1ceDIyVVRGLThceDIyPz4KXHgwQTxpc3N1ZXM+XHgwQVx4MDk8aXNzdWUgaWQ9XHgyMjU4NjNceDIyIGZvdW5kPVx4MjIxXHgyMj5ceEQwXHg5Rlx4RDBceEJFIFx4RDBceEJEXHhEMFx4QkVceEQwXHhCQ1x4RDBceEI1XHhEMVx4ODBceEQxXHg4MyBceEQxXHg4MVx4RDFceDg3XHhEMFx4Qgo1XHhEMVx4ODJceEQwXHhCMCAxOTQ3OSBceEQwXHhCRFx4RDBceEIwXHhEMFx4QjlceEQwXHhCNFx4RDBceEI1XHhEMFx4QkRceEQwXHhCRTpceDBBXHhEMFx4OTdceEQwXHhCMFx4RDBceEJBXHhEMFx4QjBceEQwXHhCNyBceEQwXHhCRlx4RDBceEJFXHhEMFx4QkFceEQxXHg4M1x4RDBceEJGXHhEMFx4QjBceEQxXHg4Mlx4RDBceEI1XHhEMFx4QkJceEQxXHg4RgowMDAwMDE1NTk3IFx4RDBceEJFLi4uPC9pc3N1ZT48L2lzc3Vlcz4=:1: parser error : Blank needed here in /in/IO6Ll on line 24 Warning: simplexml_load_file(): <?xml version=\x221.0\x22 encoding=\x22UTF-8\x22?>\x0A<issues>\x0A\x09<issue id= in /in/IO6Ll on line 24 Warning: simplexml_load_file(): ^ in /in/IO6Ll on line 24 Warning: simplexml_load_file(): php://filter/read=filter.controlchars/decode.hexsequences/resource=data://text/plain;base64,PD94bWwgdmVyc2lvbj1ceDIyMS4wXHgyMiBlbmNvZGluZz1ceDIyVVRGLThceDIyPz4KXHgwQTxpc3N1ZXM+XHgwQVx4MDk8aXNzdWUgaWQ9XHgyMjU4NjNceDIyIGZvdW5kPVx4MjIxXHgyMj5ceEQwXHg5Rlx4RDBceEJFIFx4RDBceEJEXHhEMFx4QkVceEQwXHhCQ1x4RDBceEI1XHhEMVx4ODBceEQxXHg4MyBceEQxXHg4MVx4RDFceDg3XHhEMFx4Qgo1XHhEMVx4ODJceEQwXHhCMCAxOTQ3OSBceEQwXHhCRFx4RDBceEIwXHhEMFx4QjlceEQwXHhCNFx4RDBceEI1XHhEMFx4QkRceEQwXHhCRTpceDBBXHhEMFx4OTdceEQwXHhCMFx4RDBceEJBXHhEMFx4QjBceEQwXHhCNyBceEQwXHhCRlx4RDBceEJFXHhEMFx4QkFceEQxXHg4M1x4RDBceEJGXHhEMFx4QjBceEQxXHg4Mlx4RDBceEI1XHhEMFx4QkJceEQxXHg4RgowMDAwMDE1NTk3IFx4RDBceEJFLi4uPC9pc3N1ZT48L2lzc3Vlcz4=:1: parser error : parsing XML declaration: '?>' expected in /in/IO6Ll on line 24 Warning: simplexml_load_file(): <?xml version=\x221.0\x22 encoding=\x22UTF-8\x22?>\x0A<issues>\x0A\x09<issue id= in /in/IO6Ll on line 24 Warning: simplexml_load_file(): ^ in /in/IO6Ll on line 24 Warning: simplexml_load_file(): php://filter/read=filter.controlchars/decode.hexsequences/resource=data://text/plain;base64,PD94bWwgdmVyc2lvbj1ceDIyMS4wXHgyMiBlbmNvZGluZz1ceDIyVVRGLThceDIyPz4KXHgwQTxpc3N1ZXM+XHgwQVx4MDk8aXNzdWUgaWQ9XHgyMjU4NjNceDIyIGZvdW5kPVx4MjIxXHgyMj5ceEQwXHg5Rlx4RDBceEJFIFx4RDBceEJEXHhEMFx4QkVceEQwXHhCQ1x4RDBceEI1XHhEMVx4ODBceEQxXHg4MyBceEQxXHg4MVx4RDFceDg3XHhEMFx4Qgo1XHhEMVx4ODJceEQwXHhCMCAxOTQ3OSBceEQwXHhCRFx4RDBceEIwXHhEMFx4QjlceEQwXHhCNFx4RDBceEI1XHhEMFx4QkRceEQwXHhCRTpceDBBXHhEMFx4OTdceEQwXHhCMFx4RDBceEJBXHhEMFx4QjBceEQwXHhCNyBceEQwXHhCRlx4RDBceEJFXHhEMFx4QkFceEQxXHg4M1x4RDBceEJGXHhEMFx4QjBceEQxXHg4Mlx4RDBceEI1XHhEMFx4QkJceEQxXHg4RgowMDAwMDE1NTk3IFx4RDBceEJFLi4uPC9pc3N1ZT48L2lzc3Vlcz4=:1: parser error : Start tag expected, '<' not found in /in/IO6Ll on line 24 Warning: simplexml_load_file(): <?xml version=\x221.0\x22 encoding=\x22UTF-8\x22?>\x0A<issues>\x0A\x09<issue id= in /in/IO6Ll on line 24 Warning: simplexml_load_file(): ^ in /in/IO6Ll on line 24 isseu id: Notice: Trying to get property of non-object in /in/IO6Ll on line 26 Fatal error: Call to a member function asXML() on a non-object in /in/IO6Ll on line 27
Process exited with code 255.
Output for 5.1.0 - 5.1.6
Notice: simplexml_load_file(): Unable to find the wrapper "data" - did you forget to enable it when you configured PHP? in /in/IO6Ll on line 24 Warning: simplexml_load_file(php://filter/read=filter.controlchars/decode.hexsequences/resource=data://text/plain;base64,PD94bWwgdmVyc2lvbj1ceDIyMS4wXHgyMiBlbmNvZGluZz1ceDIyVVRGLThceDIyPz4KXHgwQTxpc3N1ZXM+XHgwQVx4MDk8aXNzdWUgaWQ9XHgyMjU4NjNceDIyIGZvdW5kPVx4MjIxXHgyMj5ceEQwXHg5Rlx4RDBceEJFIFx4RDBceEJEXHhEMFx4QkVceEQwXHhCQ1x4RDBceEI1XHhEMVx4ODBceEQxXHg4MyBceEQxXHg4MVx4RDFceDg3XHhEMFx4Qgo1XHhEMVx4ODJceEQwXHhCMCAxOTQ3OSBceEQwXHhCRFx4RDBceEIwXHhEMFx4QjlceEQwXHhCNFx4RDBceEI1XHhEMFx4QkRceEQwXHhCRTpceDBBXHhEMFx4OTdceEQwXHhCMFx4RDBceEJBXHhEMFx4QjBceEQwXHhCNyBceEQwXHhCRlx4RDBceEJFXHhEMFx4QkFceEQxXHg4M1x4RDBceEJGXHhEMFx4QjBceEQxXHg4Mlx4RDBceEI1XHhEMFx4QkJceEQxXHg4RgowMDAwMDE1NTk3IFx4RDBceEJFLi4uPC9pc3N1ZT48L2lzc3Vlcz4=): failed to open stream: No such file or directory in /in/IO6Ll on line 24 Warning: simplexml_load_file(): I/O warning : failed to load external entity "php://filter/read=filter.controlchars/decode.hexsequences/resource=data://text/plain;base64,PD94bWwgdmVyc2lvbj1ceDIyMS4wXHgyMiBlbmNvZGluZz1ceDIyVVRGLThceDIyPz4KXHgwQTxpc3N1ZXM+XHgwQVx4MDk8aXNzdWUgaWQ9XHgyMjU4NjNceDIyIGZvdW5kPVx4MjIxXHgyMj5ceEQwXHg5Rlx4RDBceEJFIFx4RDBceEJEXHhEMFx4QkVceEQwXHhCQ1x4RDBceEI1XHhEMVx4ODBceEQxXHg4MyBceEQxXHg4MVx4RDFceDg3XHhEMFx4Qgo1XHhEMVx4ODJceEQwXHhCMCAxOTQ3OSBceEQwXHhCRFx4RDBceEIwXHhEMFx4QjlceEQwXHhCNFx4RDBceEI1XHhEMFx4QkRceEQwXHhCRTpceDBBXHhEMFx4OTdceEQwXHhCMFx4RDBceEJBXHhEMFx4QjBceEQwXHhCNyBceEQwXHhCRlx4RDBceEJFXHhEMFx4QkFceEQxXHg4M1x4RDBceEJGXHhEMFx4QjBceEQxXHg4Mlx4RDBceEI1XHhEMFx4QkJceEQxXHg4RgowMDAwMDE1NTk3IFx4RDBceEJFLi4uPC9pc3N1ZT48L2lzc3Vlcz4=" in /in/IO6Ll on line 24 isseu id: Notice: Trying to get property of non-object in /in/IO6Ll on line 26 Fatal error: Call to a member function asXML() on a non-object in /in/IO6Ll on line 27
Process exited with code 255.
Output for 5.0.0 - 5.0.5
Notice: simplexml_load_file(): Unable to find the wrapper "data" - did you forget to enable it when you configured PHP? in /in/IO6Ll on line 24 Warning: simplexml_load_file(php://filter/read=filter.controlchars/decode.hexsequences/resource=data://text/plain;base64,PD94bWwgdmVyc2lvbj1ceDIyMS4wXHgyMiBlbmNvZGluZz1ceDIyVVRGLThceDIyPz4KXHgwQTxpc3N1ZXM+XHgwQVx4MDk8aXNzdWUgaWQ9XHgyMjU4NjNceDIyIGZvdW5kPVx4MjIxXHgyMj5ceEQwXHg5Rlx4RDBceEJFIFx4RDBceEJEXHhEMFx4QkVceEQwXHhCQ1x4RDBceEI1XHhEMVx4ODBceEQxXHg4MyBceEQxXHg4MVx4RDFceDg3XHhEMFx4Qgo1XHhEMVx4ODJceEQwXHhCMCAxOTQ3OSBceEQwXHhCRFx4RDBceEIwXHhEMFx4QjlceEQwXHhCNFx4RDBceEI1XHhEMFx4QkRceEQwXHhCRTpceDBBXHhEMFx4OTdceEQwXHhCMFx4RDBceEJBXHhEMFx4QjBceEQwXHhCNyBceEQwXHhCRlx4RDBceEJFXHhEMFx4QkFceEQxXHg4M1x4RDBceEJGXHhEMFx4QjBceEQxXHg4Mlx4RDBceEI1XHhEMFx4QkJceEQxXHg4RgowMDAwMDE1NTk3IFx4RDBceEJFLi4uPC9pc3N1ZT48L2lzc3Vlcz4=): failed to open stream: No such file or directory in /in/IO6Ll on line 24 Warning: I/O warning : failed to load external entity "php://filter/read=filter.controlchars/decode.hexsequences/resource=data://text/plain;base64,PD94bWwgdmVyc2lvbj1ceDIyMS4wXHgyMiBlbmNvZGluZz1ceDIyVVRGLThceDIyPz4KXHgwQTxpc3N1ZXM+XHgwQVx4MDk8aXNzdWUgaWQ9XHgyMjU4NjNceDIyIGZvdW5kPVx4MjIxXHgyMj5ceEQwXHg5Rlx4RDBceEJFIFx4RDBceEJEXHhEMFx4QkVceEQwXHhCQ1x4RDBceEI1XHhEMVx4ODBceEQxXHg4MyBceEQxXHg4MVx4RDFceDg3XHhEMFx4Qgo1XHhEMVx4ODJceEQwXHhCMCAxOTQ3OSBceEQwXHhCRFx4RDBceEIwXHhEMFx4QjlceEQwXHhCNFx4RDBceEI1XHhEMFx4QkRceEQwXHhCRTpceDBBXHhEMFx4OTdceEQwXHhCMFx4RDBceEJBXHhEMFx4QjBceEQwXHhCNyBceEQwXHhCRlx4RDBceEJFXHhEMFx4QkFceEQxXHg4M1x4RDBceEJGXHhEMFx4QjBceEQxXHg4Mlx4RDBceEI1XHhEMFx4QkJceEQxXHg4RgowMDAwMDE1NTk3IFx4RDBceEJFLi4uPC9pc3N1ZT48L2lzc3Vlcz4=" in /in/IO6Ll on line 24 isseu id: Notice: Trying to get property of non-object in /in/IO6Ll on line 26 Fatal error: Call to a member function asXML() on a non-object in /in/IO6Ll on line 27
Process exited with code 255.
Output for 4.4.2 - 4.4.9
Parse error: syntax error, unexpected T_CLASS in /in/IO6Ll on line 32
Process exited with code 255.
Output for 4.3.0 - 4.3.1, 4.3.5 - 4.3.11, 4.4.0 - 4.4.1
Parse error: parse error, unexpected T_CLASS in /in/IO6Ll on line 32
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error in /in/IO6Ll on line 32
Process exited with code 255.

preferences:
351.38 ms | 401 KiB | 464 Q