getValue() public method

Get form element object value.
public getValue ( ) : mixed
return mixed
Exemplo n.º 1
0
 public function testSetAndGetValue()
 {
     $e = new Element('text', 'email');
     $e->setValue('*****@*****.**');
     $this->assertEquals('*****@*****.**', $e->getValue());
 }