mirror of
https://github.com/php/php-src.git
synced 2024-12-15 21:05:51 +08:00
9 lines
170 B
PHP
9 lines
170 B
PHP
--TEST--
|
|
Bug #40432 (strip_tags() fails with greater than in attribute)
|
|
--FILE--
|
|
<?php
|
|
echo strip_tags('<span title="test > all">this</span>') . "\n";
|
|
?>
|
|
--EXPECT--
|
|
this
|