getCharset() public method

Method to return the document charset.
public getCharset ( ) : string
return string
Exemplo n.º 1
0
 public function testSetAndGetCharset()
 {
     $d = new Dom(Dom::XHTML11);
     $d->setCharset('utf-8');
     $this->assertEquals('utf-8', $d->getCharset());
 }