Ejemplo n.º 1
0
 public function testHtmlEntityEncode()
 {
     $s = new StringObject("I'll \"walk\" the <b>dog</b> now");
     $s->htmlEntityEncode();
     $this->assertSame("I'll &quot;walk&quot; the &lt;b&gt;dog&lt;/b&gt; now", $s->val());
 }