setCharset() 공개 메소드

Set charset
public setCharset ( mixed $charset ) : void
$charset mixed
리턴 void
예제 #1
0
 /**
  * Test charset
  */
 public function testCharset()
 {
     $charset = 'ISO-8859-1';
     $this->vcard->setCharset($charset);
     $this->assertEquals($charset, $this->vcard->getCharset());
 }