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-- line break 2 spaces --SKIPIF-- --FILE-- <?php $text = <<<EOT A first sentence a..
Decoded Output download
--TEST--
line break 2 spaces
--SKIPIF--
--FILE--
<?php
$text = <<<EOT
A first sentence
and a line break.
EOT;
$hoedown = new Hoedown;
echo $hoedown->parse($text);
--EXPECTF--
<p>A first sentence<br>
and a line break.</p>
?>
Did this file decode correctly?
Original Code
--TEST--
line break 2 spaces
--SKIPIF--
--FILE--
<?php
$text = <<<EOT
A first sentence
and a line break.
EOT;
$hoedown = new Hoedown;
echo $hoedown->parse($text);
--EXPECTF--
<p>A first sentence<br>
and a line break.</p>
Function Calls
None |
Stats
MD5 | 28037b8bbd2016851d8ed1ff51db84d9 |
Eval Count | 0 |
Decode Time | 67 ms |