Пример #1
0
 public function testHtmlEntityDecode()
 {
     $s = new StringObject("I'll "walk" the <b>dog</b> now");
     $s->htmlEntityDecode();
     $this->assertSame("I'll \"walk\" the <b>dog</b> now", $s->val());
 }