POMO_StringReader::__construct( $str =  )

In this article

PHP5 constructor.

Source

public function __construct( $str = '' ) {
	parent::__construct();
	$this->_str = $str;
	$this->_pos = 0;
}

User Contributed Notes

You must log in before being able to contribute a note or feedback.