__toString() 공개 메소드

Convert the element to its string representation.
public __toString ( ) : string
리턴 string
예제 #1
0
 public function testToString()
 {
     $element = new Element('span', 'hello');
     $this->assertEquals($element->html(), $element->__toString());
 }