getContentType() public method

Method to return the document charset.
public getContentType ( ) : string
return string
Exemplo n.º 1
0
 public function testSetAndGetContentType()
 {
     $d = new Dom(Dom::XHTML11);
     $d->setContentType('text/html');
     $this->assertEquals('text/html', $d->getContentType());
 }