php-src/ext/standard/tests/strings/bug40637.phpt

14 lines
224 B
Plaintext
Raw Normal View History

2007-02-26 09:58:04 +00:00
--TEST--
Bug #40637 (strip_tags() does not handle single quotes correctly)
--FILE--
<?php
$html = '<span title="Bug \' Trigger">Text</span>';
var_dump(strip_tags($html));
echo "Done\n";
?>
2018-09-16 17:16:42 +00:00
--EXPECT--
2007-02-26 09:58:04 +00:00
string(4) "Text"
Done