1--TEST-- 2Bug #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--EXPECTF-- 14string(8%d) " 15 16 first cell before < first cell after 17 second cell before < second cell after 18" 19