getValue() public method

public getValue ( ) : string
return string text enclosed between opening and closing tag of this element
Example #1
0
 public function testSetValue()
 {
     $element = new TXmlElement('tag');
     $element->setValue('value');
     self::assertEquals('value', $element->getValue());
 }