Annotation of embedaddon/php/ext/standard/tests/strings/bug21744.phpt, revision 1.1.1.1

1.1       misho       1: --TEST--
                      2: Bug #21744 (strip_tags misses exclamation marks in alt text)
                      3: --FILE--
                      4: <?php
                      5: $test = <<< HERE
                      6: <a href="test?test\\!!!test">test</a>
                      7: <!-- test -->
                      8: HERE;
                      9: 
                     10: print strip_tags($test, '');
                     11: print strip_tags($test, '<a>');
                     12: ?>
                     13: --EXPECT--
                     14: test
                     15: <a href="test?test\!!!test">test</a>

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>