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-- Bug #21744 (strip_tags misses exclamation marks in alt text) --FILE-- <?php $test..
Decoded Output download
--TEST--
Bug #21744 (strip_tags misses exclamation marks in alt text)
--FILE--
<?php
$test = <<< HERE
<a href="test?test\!!!test">test</a>
<!-- test -->
HERE;
print strip_tags($test, '');
print strip_tags($test, '<a>');
?>
--EXPECT--
test
<a href="test?test\!!!test">test</a>
Did this file decode correctly?
Original Code
--TEST--
Bug #21744 (strip_tags misses exclamation marks in alt text)
--FILE--
<?php
$test = <<< HERE
<a href="test?test\\!!!test">test</a>
<!-- test -->
HERE;
print strip_tags($test, '');
print strip_tags($test, '<a>');
?>
--EXPECT--
test
<a href="test?test\!!!test">test</a>
Function Calls
strip_tags | 1 |
Stats
MD5 | 8729ae1dbd274a9a921e12f879f0cf05 |
Eval Count | 0 |
Decode Time | 102 ms |