Example #1
0
 public function testStripTags2()
 {
     $s = new StringObject('<p><b>Bold</b><em>Italic</em></p>');
     $s->stripTags('<b>,<em>');
     $this->assertSame('<b>Bold</b><em>Italic</em>', $s->val());
 }