Note that strip_tags returns a new string. It does not modify the original string, i.e:
$html = 'Test
';
strip_tags($html); // Throws away the result, since you don't assign the return
// value of the function to a variable
$stripped = strip_tags($html);
echo $stripped; // echos 'Test'