getValue() 공개 메소드

Get form element object value.
public getValue ( ) : mixed
리턴 mixed
예제 #1
0
 public function testSetAndGetValue()
 {
     $e = new Element('text', 'email');
     $e->setValue('*****@*****.**');
     $this->assertEquals('*****@*****.**', $e->getValue());
 }