getText() 공개 메소드

Get text part of the message.
public getText ( ) : string
리턴 string
예제 #1
0
 public function testSetAndGetText()
 {
     $m = new Mail();
     $m->setText('Hello World');
     $this->assertEquals('Hello World', $m->getText());
 }