Annotation of embedaddon/php/ext/standard/tests/strings/bug21453.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: Bug #21453 (handling of non-encoded <)
        !             3: --FILE--
        !             4: <?php
        !             5: $test = "
        !             6: <table>
        !             7:        <tr><td>first cell before < first cell after</td></tr>
        !             8:        <tr><td>second cell before < second cell after</td></tr>
        !             9: </table>";
        !            10: 
        !            11:        var_dump(strip_tags($test));
        !            12: ?>
        !            13: --EXPECT--
        !            14: string(80) "
        !            15: 
        !            16:        first cell before < first cell after
        !            17:        second cell before < second cell after
        !            18: "

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