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-- html_entity_decode: Handling of ' --FILE-- <?php echo "*** HTML 4.01 implic..
Decoded Output download
*** HTML 4.01 implicit (shouldn't decode) ***
'
*** HTML 4.01 (shouldn't decode) ***
Did this file decode correctly?
Original Code
--TEST--
html_entity_decode: Handling of '
--FILE--
<?php
echo "*** HTML 4.01 implicit (shouldn't decode) ***\n";
echo html_entity_decode("'", ENT_QUOTES, "UTF-8"), "\n";
echo "*** HTML 4.01 (shouldn't decode) ***\n";
echo html_entity_decode("'", ENT_QUOTES | ENT_HTML401, "UTF-8"), "\n";
echo "*** HTML 5 ***\n";
echo html_entity_decode("'", ENT_QUOTES | ENT_HTML5, "UTF-8"), "\n";
echo "*** XHTML 1.0 ***\n";
echo html_entity_decode("'", ENT_QUOTES | ENT_XHTML, "UTF-8"), "\n";
echo "*** XML 1.0 ***\n";
echo html_entity_decode("'", ENT_QUOTES | ENT_XML1, "UTF-8"), "\n";
echo "Done.\n";
?>
--EXPECT--
*** HTML 4.01 implicit (shouldn't decode) ***
'
*** HTML 4.01 (shouldn't decode) ***
'
*** HTML 5 ***
'
*** XHTML 1.0 ***
'
*** XML 1.0 ***
'
Done.
Function Calls
html_entity_decode | 1 |
Stats
MD5 | c816716c1140104008a34ad299d61a2f |
Eval Count | 0 |
Decode Time | 95 ms |