- Output for 7.4.0 - 7.4.33, 8.0.1 - 8.0.30, 8.1.0 - 8.1.31, 8.2.0 - 8.2.27, 8.3.0 - 8.3.15, 8.4.1 - 8.4.2
- With slash: '' Without slash: '<br><br ><br/><br />' Correct: Without slash
<?php
$content = '<br><br ><br/><br />';
$with_slash = strip_tags( $content, '<br />' );
$without_slash = strip_tags( $content, '<br>' );
echo "With slash:\n'$with_slash'\n\n";
echo "Without slash:\n'$without_slash'\n\n";
echo 'Correct: ' . ( '' === $with_slash ? 'Without slash' : 'With slash' );