getCharset() 공개 메소드

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