import zend standard tests
[hiphop-php.git] / hphp / test / zend / good / ext-standard-strings / bug23650.php
blob6650002ecbaed41ea4674d38337b0870d88ec262
1 <?php
2 $str = <<< HERE
3 1:<!-- abc - -->
4 2:<!doctype -- >
5 3:
6 4:<abc - def>
7 5:abc - def
8 6:</abc>
10 HERE;
12 echo strip_tags($str);
13 echo strip_tags($str, '<abc>');