Pop\Dom\Dom::getCharset PHP Method

getCharset() public method

Method to return the document charset.
public getCharset ( ) : string
return string
    public function getCharset()
    {
        return $this->charset;
    }

Usage Example

Beispiel #1
0
 public function testSetAndGetCharset()
 {
     $d = new Dom(Dom::XHTML11);
     $d->setCharset('utf-8');
     $this->assertEquals('utf-8', $d->getCharset());
 }